在RoboMongo(0.9.0-RC09)中运行以下mongo查询会给出正确数量的文档(使用游标计数功能),而迭代所有文档只会返回一小部分文档:
var allDocuments = db.getCollection('mycollection').find({});
print(allDocuments.size()); // prints 170 000 -> correct
var count = 0;
allDocuments.forEach(function(doc) {
count++;
});
print(count); // 'randomly' prints values between 30 000 and 44 000
我们是否需要专门配置查询以返回所有文档?
答案 0 :(得分:4)
问题解决了:
这是robomongo shellTimeoutSec
配置的问题(默认值:15秒),导致光标停止返回更多元素。
这也解释了'随机'数量为30 000至44 000(取决于网络速度)。 这是robomogo的票:https://github.com/paralect/robomongo/issues/1106#issuecomment-230258348
现在的修复/解决方法是在robomongo.json中增加shellTimeoutSec
:
Windows
0.9.x
C:\Users\<user>\.config\robomongo\0.9\robomongo.json
0.8.x
C:\Users\<user>\.config\robomongo\robomongo.json
MAC
0.9.x
/Users/<user>/.config/robomongo/0.9/robomongo.json
0.8.x
/Users/<user>/.config/robomongo/robomongo.json
Linux
0.9.x
/home/<user>/.config/robomongo/0.9/robomongo.json
0.8.x
/home/<user>/.config/robomongo/robomongo.json
答案 1 :(得分:-2)
我们需要转换为数组。在那之后,我们只能为每个人做。 试试下面!!!
var allDocuments = db.getCollection('mycollection').find({}).toArray();
print(allDocuments.length);
var count = 0;
allDocuments.forEach(function(doc) {
count++;
print("IterCount : ",count);
});
print("FinalCount : ",count);
//使用光标
db.getCollection('mycollection').find({}).forEach(function(doc){
count++;
print("IterCount : ",count);});