MongoDB之TextSearch簡介

來源:互聯網
上載者:User

標籤:this   arch   imp   .com   com   重排序   blog   分享   title   

MongoDBTextSearch簡介 

MongoDB支援對常值內容執行文本搜尋操作,其提供了索引text index和查詢操作$text來完成文本搜尋功能。下面我們通過一個簡單的例子來體驗一下MongoDB提供的全文檢索索引功能。

1.建立blogs collection,並插入如下的document。

db.blogs.insert({_id:1,title:"MongoDB text search",content:"this is a simple MongoDB text search introduction"})

db.blogs.insert({_id:2,title:"MongoDB text index",content:"this is ae MongoDB text index  introduction"})

db.blogs.insert({_id:3,title:"MongoDB text operators",content:"this is ae MongoDB text query  introduction"})

 

2.建立Text Index。

只有擁有text index的collection才支援全文檢索索引;

每個collection只能擁有一個text index;

Text index可以包含任何的string類型、string數群組類型的欄位;

Text index可以包含多個欄位;

執行如下建立text index的語句

db.blogs.ensureIndex({title:"text",content:"text"})

 

3.執行簡單的全文檢索索引

db.blogs.find({$text:{$search:"index"}})

 

4.查詢包含index或者operators的記錄

db.blogs.find({$text:{$search:"index operators"}})

 

5.查詢包含mongodb但是不包含search的記錄

db.blogs.find({$text:{$search:"mongodb -search"}})

 

6.查詢包含text search片語的記錄

db.blogs.find({$text:{$search:"\"text search\""}})

 

7.使用權重排序搜尋結果

預設情況下全文檢索索引返回的結果是無序的;

每次全文檢索索引MongoDB會針對文檔的匹配程度為每個document計算一個相對的分數;

MongoDB提供了$meta textScore來支援全文檢索索引的分數;

db.blogs.find( {$text:{$search:"mongodb index"}}, {score:{$meta:"textScore"}} ).sort({score:{$meta:"textScore"}}) 

MongoDB之TextSearch簡介

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.