1

私のmongodbコレクションには、2dsphereインデックスがあります

{ "ns" : "PanPanDB.posts", "key" : { "location_2dsphere" : "2dsphere" }, "name" : "location_2dsphere_2dsphere", "background" : true, "safe" : null, "unique" : false }

クエリを実行すると、次のエラーが表示されます。

> db.posts.find( { "location_2dsphere" :{ $near : {$geometry:    { type : "Point" , coordinates : [ 100 , 5 ] } , $maxDistance : 1000}}}  )
error: {
    "$err" : "can't find special index: 2d for: { location_2dsphere: { $near: { $geometry: { type: \"Point\", coordinates: { 0: 100.0, 1: 5.0 } }, $maxDistance: 1000.0 } } }"
}

手伝って頂けますか?ウェブ上にはあまりドキュメントがありません!

4

1 に答える 1