GeoNear Mongoose和2d Indexes

时间:2013-05-25 08:37:28

标签: mongodb mongoose

我正在执行此查询

{
 "$geoNear":{
  "uniqueDocs":true,
  "includeLocs":true,
  "near":[
     8.759131,
     40.272393
  ],
  "spherical":false,
  "distanceField":"d",
  "maxDistance":0.09692224622030236,
  "query":{
  },
  "num":3
 }
}

在此模型上:

var ridePathSchema = new Schema({
  ...
  loc: [Number],
  ...
});
ridePathSchema.index({
 loc: "2d"
});

我得到了:

Unhandled rejection reason: MongoError: 
can't find any special indices: 2d (needs index), 2dsphere (needs index)

有趣的是,就在这个查询之前,我确实在同一个模型上执行了类似的查询,但是我对它进行聚合并且它可以工作。

我做错了什么?

更新:

RidePaths.aggregate([query]) WORKS

RidePaths.find(query) CAN'T FIND INDEX

1 个答案:

答案 0 :(得分:5)

$ geoNear应该作为command执行,或者在聚合查询的第一阶段执行(如您所述)。

命令无法传递给mongooses find()方法。发出命令的唯一方法是通过驱动程序接口。请参阅此要点,了解如何执行此操作的示例:https://gist.github.com/aheckmann/5871847

请记住,驱动程序界面的结果不会是mongoose文件,因为mongoose被绕过了。