要检查MongoDB索引是否生效,可以使用explain()方法查看查询计划。explain()方法返回查询计划的详细信息,包括使用的索引、查询优化器的决策以及执行时间等。
以下是检查索引是否生效的步骤:
打开MongoDB shell。
使用find()方法执行查询语句,并在查询语句后面添加explain()方法。
例如,如果要检查集合"mycollection"中字段"myfield"的索引是否生效,可以执行以下命令:
db.mycollection.find({ myfield: "value" }).explain()
如果在"inputStage"中出现"IXSCAN"(使用索引扫描)或者"IDHACK"(使用索引覆盖扫描),则表示索引生效。
示例输出:
{
"queryPlanner" : {
"plannerVersion" : 1,
"namespace" : "mydatabase.mycollection",
"indexFilterSet" : false,
"parsedQuery" : {
"myfield" : {
"$eq" : "value"
}
},
"winningPlan" : {
"stage" : "FETCH",
"inputStage" : {
"stage" : "IXSCAN",
"keyPattern" : {
"myfield" : 1
},
"indexName" : "myfield",
"isMultiKey" : false,
"direction" : "forward",
"indexBounds" : {
"myfield" : [
"[\"value\", \"value\"]"
]
}
}
},
...
},
...
}
在上述示例中,"winningPlan"部分显示了索引的使用情况。"inputStage"中的"IXSCAN"表示使用了索引扫描。
注意:在生产环境中,使用explain()方法会执行查询语句,这可能会对数据库性能产生影响。因此,仅在需要检查索引是否生效或优化查询性能时才使用该方法。