mongodb实际查询时间大于explain里的时间

T1表存储某区域的边界,并创建了2dsphere索引,大概有1300条数据;现在要查询某个点是否在这个区域内,如下:
db.T1.createIndex({'Loc':'2dsphere'})

db.T1.find(
    {
        Loc: {
            $geoIntersects: {
                $geometry: {
                    "type": "Point",
        "coordinates": [118.9821, 26.1]
                }
            }
        }
    }
)

explain时,执行耗时是34ms

"executionStats": {
        "executionSuccess": true,
        "nReturned": 3,
        "executionTimeMillis": 34,
        "totalKeysExamined": 11,
        "totalDocsExamined": 3,
        ...
        }

但实际在navicat里执行时,右下角的时间却是108msimage

为什么呢?

阅读 1.2k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题