MongoDB慢查询检测
使用mongod命令以–slowms选项启动。
在选项之后指定数字可以更改阈值。默认值为100毫秒。
$ mongod --slowms <millisec>
如果有慢查询,则会输出到日志中。
当你在mongo shell中对输出到日志的查询进行explain()时,可以发现有时没有使用索引进行搜索。
$ mongo
> db.collection.find().explain()
使用mongod命令以–slowms选项启动。
在选项之后指定数字可以更改阈值。默认值为100毫秒。
$ mongod --slowms <millisec>
如果有慢查询,则会输出到日志中。
当你在mongo shell中对输出到日志的查询进行explain()时,可以发现有时没有使用索引进行搜索。
$ mongo
> db.collection.find().explain()