一、mongodb慢查询的作用:
二、mongodb开启慢查询的缺点:
三、mongodb开启查询慢查询:
四、mongodb慢查询输入字段含义:
1、查询结果大于5毫秒的请求:
>db.system.profile.find().sort({millis:-1}).limit(10);
2、带有执行时间倒序查询:
>db.system.profile.find({
ts : {
$gt : new ISODate("2013-05-09T03:00:00Z") ,
$lt : new ISODate("2013-05-17T09:40:00Z")
}
}
).sort( { millis : -1 } )