Mongodb 实践
Posted sunzhuli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mongodb 实践相关的知识,希望对你有一定的参考价值。
Mongodb 慢查询分析
db.setProfilingLevel(1)
db.setProfilingLevel(1,1000)
db.getProfilingStatus()
查看记录下来的耗时语句
db.system.profile.find()
其中,"ts" : ISODate("2018-03-28T01:53:10.779Z")为执行命令时间:
db.system.profile.find().sort({ts:-1})
通过explain()查看index使用情况
db.getCollection(‘collection_name‘).find({"insertTime" : {"$gte":ISODate("2018-02-06T05:47:00.267Z"), "$lte":ISODate("2018-03-06T05:47:00.267Z")}}).explain()
以上是关于Mongodb 实践的主要内容,如果未能解决你的问题,请参考以下文章