标签: javascript performance mongodb mongoose
当我执行db.mycollection.find()查询时,我怎样才能知道时间
db.mycollection.find()
答案 0 :(得分:3)
试试这个:
db.collection.find().explain('executionStats')
看,如果有帮助。
有关详细信息,请参阅Analyze Query Performance