Mongodb地理空间索引不支持$ box?

时间:2016-05-18 10:00:53

标签: mongodb

我正在创建一个2dsphere索引并尝试将其用于我的地理空间查询。但是,我发现当我使用$ geoWithin。$ box时,它不会使用索引,因此非常慢。如果我使用$ geoWithin。$ geometry,那么将使用索引。 document说$ box支持索引,所以我必须错过一些东西。有什么想法吗?

地理空间索引

    {
            "v" : 1,
            "key" : {
                    "details.lonlat" : "2dsphere"
            },
            "name" : "longlat",
            "ns" : "realestate.property",
            "2dsphereIndexVersion" : 2
    }

使用GeoJSON多边形进行查询时使用索引

> 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"
                                        },
...

使用$ box不使用索引,而是使用集合扫描(为什么?)

> 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"

Mongodb Info

            "version" : "3.0.4",
            "gitVersion" : "0481c958daeb2969800511e7475dc66986fa9ed5"

1 个答案:

答案 0 :(得分:3)

2dsphere不支持$ box查询。这就是您的查询落入完整集合扫描的原因。

documentation说明以下内容:

Only the 2d geospatial index supports $box

添加2d索引应该可以做到这一点,例如:

db.property.ensureIndex({"details.lonlat": "2d"});