mongodb 文本索引

來源:互聯網
上載者:User

標籤:man   print   .com   文本搜尋   com   tag   文本   刪除   子集   

啟用文本搜尋:

最初文本搜尋是一個實驗性功能,但2.6版本開始,配置是預設啟用的。但是,如果使用的是以前 MongoDB 的版本,那麼必須啟用文本搜尋,使用下面的代碼:

>db.adminCommand({setParameter:true,textSearchEnabled:true})
建立文本索引:

考慮下文字後其標籤的文章集合,包含以下檔案:

{   "post_text": "enjoy the mongodb articles on yiibai",   "tags": [      "mongodb",      "yiibai"   ]}

我們將建立post_text欄位的文本索引,以便我們能夠在我們的文章中搜尋文本:

>db.posts.ensureIndex({post_text:"text"})
使用文本索引:

現在,我們已經建立文本post_text欄位的索引,我們將搜尋所有含有 yiibai.com 一詞的文章。

>db.posts.find({$text:{$search:"yiibai.com"}})

上面的命令返回在文本中含有yiibai單詞的文章,如以下結果文檔:

{    "_id" : ObjectId("53493d14d852429c10000002"),    "post_text" : "enjoy the mongodb articles on yiibai.com",    "tags" : [ "mongodb", "yiibai.com" ]}{   "_id" : ObjectId("53493d1fd852429c10000003"),    "post_text" : "writing tutorials on mongodb",   "tags" : [ "mongodb", "tutorial" ] }

如果使用的是舊版本的MongoDB,必須使用下面命令:

>db.posts.runCommand("text",{search:" yiibai.com "})

使用文本搜尋比普通搜尋的搜尋效率有極大的提高。

刪除文本索引:

要刪除現有的文本索引,使用下面的查詢首先找到索引的名稱:

>db.posts.getIndexes()

從上面查詢得到索引的名稱後,運行以下命令。這裡,post_text_text是索引的名稱。

>db.posts.dropIndex("post_text_text")

mongodb 文本索引

相關文章

聯繫我們

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