MongoDB数据库的explain命令介绍详解大数据

> db.post.find().explain()
{
        “cursor” : “BasicCursor”,
        “indexBounds” : [ ],
        “nscanned” : 40,
        “nscannedObjects” : 40,
        “n” : 40,
        “millis” : 0,
        “allPlans” : [
{
“cursor” : “BasicCursor”,
“indexBounds” : [ ]
}]
}
cursor这个是返回的游标类型,这里是BasicCursor,还有Btree “nscanned” : 40被扫描的文档数量
n返回的数量 ,这里全部返回,所以也是40
millis消耗的时间
indexBounds为空的,说明没有用到索引,完毕。

MongoDB数据库的explain命令介绍详解大数据

转载请注明来源网站:blog.ytso.com谢谢!

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/9704.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论