MongoDB string欄位索引策略總結

來源:互聯網
上載者:User

標籤:

學習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欄位索引策略總結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.