MongoDB对不同环境的不同响应[Aggregate]

时间:2017-05-23 14:28:34

标签: mongodb aggregation-framework

我有下一个查询:

db.getCollection('dealers').aggregate([{ "$geoNear" : { "near" : { "type" : "Point" , "coordinates" : [ 22.937506 , -30.559482]} , "spherical" : true , "distanceField" : "distance" , "maxDistance" : 21000000 , "num" : 6}}, { "$match" : { "$and" : [ { "brands" : { "$in" : [ "starbucks"]}} , { "country" : "za"} , { "language" : "en"}]}},{ $group: { _id: null, count: { $sum: 1 } } }, { "$limit" : 6}]);

我有两个环境,两个环境具有相同的数据和相同的索引,但是当我运行上面的查询时,我得到第一个环境6个寄存器和另外3个寄存器。

我查了一下,他们有相同的mongoDB版本,你有什么想法吗?

0 个答案:

没有答案