我想使用 Locust 测试一种算法的预测阶段的性能。
引擎 (REST API) 的查询类似于以下内容:
engine_client = predictionio.EngineClient(url="http://localhost:8003")
print engine_client.send_query({"items": ["10181"], "num": 50, "category": ["31","32"], "blackList":["10184"]})
使用 java 代码: 使用 Java 代码:
@RequestMapping(value = "/bestSeller", method = RequestMethod.GET)
public String getBestSellerProducts(
Model model,
@RequestParam(value = "categoryCode") String categoryCode,
HttpServletRequest request, HttpServletResponse response)
throws IOException {
logger.info("getBestSellerProducts - blackList {}", blackList);
...
}
谁能帮我这个?非常感谢。