我已經創建了我的收集提供了以下指標:MongoDB的查詢不會對複合索引使用前綴文本字段
db.myCollection.createIndex({
user_id: 1,
name: 'text'
})
如果我嘗試看看包含這兩個字段的查詢的執行計劃,這樣:
db.getCollection('campaigns').find({
user_id: ObjectId('xxx')
,$text: { $search: 'bla' }
}).explain('executionStats')
我得到如下結果:
...
"winningPlan" : {
"stage" : "TEXT",
"indexPrefix" : {
"user_id" : ObjectId("xxx")
},
"indexName" : "user_id_1_name_text",
"parsedTextQuery" : {
"terms" : [
"e"
],
"negatedTerms" : [],
"phrases" : [],
"negatedPhrases" : []
},
"inputStage" : {
"stage" : "TEXT_MATCH",
"inputStage" : {
"stage" : "TEXT_OR",
"inputStage" : {
"stage" : "IXSCAN",
"keyPattern" : {
"user_id" : 1.0,
"_fts" : "text",
"_ftsx" : 1
},
"indexName" : "user_id_1_name_text",
"isMultiKey" : true,
"isUnique" : false,
"isSparse" : false,
"isPartial" : false,
"indexVersion" : 1,
"direction" : "backward",
"indexBounds" : {}
}
}
}
}
...
正如documentation指出, MongoDB可以使用索引前綴來執行索引查詢。
由於user_id
是該指數的前綴之上,我預計,只有user_id
查詢將使用索引,但如果我嘗試以下方法:
db.myCollection.find({
user_id: ObjectId('xxx')
}).explain('executionStats')
我得到:
...
"winningPlan" : {
"stage" : "COLLSCAN",
"filter" : {
"user_id" : {
"$eq" : ObjectId("xxx")
}
},
"direction" : "forward"
},
...
因此,它根本沒有使用索引並執行完整的集合掃描。
所以,基本上這裏的解決方案,因爲我需要兩個查詢,將有2個索引:1個單獨包含'user_id',另一個包含'{user_id,name}'? –
@HenriqueBarcelos是的,你需要'user_id'上的單獨索引。這可能是另一個非稀疏複合索引的前綴。 – Stennie