分类: Mysql/postgreSQL
2012-08-02 23:16:55
MongoDB 提供了一个 explain 命令让我们获知系统如何处理查询请求。利用 explain 命令,我们可以很好地观察系统如何使用索引来加快检索,同时可以针对性优化索引。
> db.t5.ensureIndex({name:1}) > db.t5.ensureIndex({age:1}) > db.t5.find({age:{$gt:45}}, {name:1}).explain() { "cursor" : "BtreeCursor age_1", "nscanned" : 0, "nscannedObjects" : 0, "n" : 0, "millis" : 0, "nYields" : 0, "nChunkSkips" : 0, "isMultiKey" : false, "indexOnly" : false, "indexBounds" : { "age" : [ [ 45, 1.7976931348623157e+308 ] ] } } |
字段说明:
l cursor: 返回游标类型(BasicCursor或 BtreeCursor)
l nscanned: 被扫描的文档数量
l n: 返回的文档数量
l millis: 耗时(毫秒)
l indexBounds: 所使用的索引