我正在创建一个2dsphere索引并尝试将其用于我的地理空间查询。但是,我发现当我使用$ geoWithin。$ box时,它不会使用索引,因此非常慢。如果我使用$ geoWithin。$ geometry,那么将使用索引。 document说$ box支持索引,所以我必须错过一些东西。有什么想法吗?
{
"v" : 1,
"key" : {
"details.lonlat" : "2dsphere"
},
"name" : "longlat",
"ns" : "realestate.property",
"2dsphereIndexVersion" : 2
}
> db.property.find({'details.lonlat': {'$geoWithin': {$geometry: {type:'Polygon', coordinates: [[[1,1],[2,2],[3,3], [1,1]]]}}}}).explain()
"inputStage" : {
"stage" : "IXSCAN",
"keyPattern" : {
"details.lonlat" : "2dsphere"
},
...
> db.property.find({'details.lonlat': {'$geoWithin': {'$box': [[ 0, 0 ], [ 100, 100 ] ]}}}).explain()
"winningPlan" : {
"stage" : "COLLSCAN",
"filter" : {
"details.lonlat" : {
"$geoWithin" : {
"$box" : [
[
0,
0
],
[
100,
100
]
]
}
}
},
"direction" : "forward"
"version" : "3.0.4",
"gitVersion" : "0481c958daeb2969800511e7475dc66986fa9ed5"
答案 0 :(得分:3)
2dsphere不支持$ box查询。这就是您的查询落入完整集合扫描的原因。
框documentation说明以下内容:
Only the 2d geospatial index supports $box
添加2d索引应该可以做到这一点,例如:
db.property.ensureIndex({"details.lonlat": "2d"});