標籤:
在學習MongoDB的索引時發現一個奇怪的問題,給一個string類型的field設定text索引,但是在查詢的時候並沒有使用索引。比如:
db.tomcat_access_logs.ensureIndex( { url : ’text’ });
db.tomcat_access.logs.find( { url : ’1’ } ).explain();
db.tomcat_access_logs.find( { url : /1/ } ).explain();
{
"cursor" : "BasicCursor",
"isMultiKey" : false,
"n" : 0,
"nscannedObjects" : 100,
"nscanned" : 100,
"nscannedObjectsAllPlans" : 100,
"nscannedAllPlans" : 100,
"scanAndOrder" : false,
"indexOnly" : false,
"nYields" : 0,
"nChunkSkips" : 0,
"millis" : 0,
...
}
從explain()的結果可以發現,在查詢的時候只用了BasicCursor,也就是說沒有使用索引。
後發現只有當使用$text查詢的時候才會用到text索引:
db.tomcat_access_logs.find( { $text : { $search : ’1’} } ).explain();
{
"cursor" : "TextCursor",
"n" : 0,
"nscannedObjects" : 0,
"nscanned" : 0,
"nscannedObjectsAllPlans" : 0,
"nscannedAllPlans" : 0,
"scanAndOrder" : false,
"nYields" : 0,
"nChunkSkips" : 0,
"millis" : 0,
...
}
只不過這樣的話,就沒有辦法針對某個特定field進行查詢了,因為$text是對所有text索引的field進行的全文檢索搜尋。此時只需要做一般的索引即可:
db.tomcat_access_logs.ensureIndex( { url : 1 } );
db.tomcat_access.logs.find( { url : ’1’ } ).explain();
db.tomcat_access.logs.find( { url : /.*1.*/g } ).explain();
{
"cursor" : "BtreeCursor url_1",
"isMultiKey" : false,
"n" : 0,
"nscannedObjects" : 0,
"nscanned" : 100,
"nscannedObjectsAllPlans" : 0,
"nscannedAllPlans" : 100,
"scanAndOrder" : false,
"indexOnly" : false,
"nYields" : 0,
"nChunkSkips" : 0,
"millis" : 1,
"indexBounds" : {
"url" : [
[
"",
{
}
],
[
/.*1.*/,
/.*1.*/
]
]
},
...
}
總結
1.使用db.collection.find( { url : ’1’} )或者db.collection.find( { url : /.*a.*/} ),不會使用的text索引,而是一般索引。
2.建立了text索引後,只能對text索引包含的所有欄位進行全文檢索搜尋,無法對某個欄位進行搜尋
3.一般索引和text索引可以同時建立,以滿足不同查詢需求
原文來自:segmentfault
MongoDB string欄位索引策略總結