MongoDB查找jmeter

时间:2016-01-11 10:23:32

标签: jmeter

我想通过使用MongoDB脚本获得准确的结果,如下所示: db.user.find({“name”:“jxd”})

enter image description here

但不幸的是,它只给我“好”。

enter image description here

1 个答案:

答案 0 :(得分:0)

当返回多个条目时,即您的用户"可能会发生这种情况。 schema包含多个文档,名称为" jxd"。

尝试在查询末尾添加toArray(),例如:

db.user.find({ "name" : "jxd" }).toArray()

你应该看到相关的输出。

有关更多MongoDB负载测试提示和技巧,请参阅How to Load Test MongoDB with JMeter指南