MongoDB全文索引用法

來源:互聯網
上載者:User

MongoDB全文索引用法

MongoDB全文索引的建立方法:
db.ensureIndex({key:"text"})
db.ensureIndex({key1:"text",key2:"text"})
db.ensureIndex({"$**":"text",key2:"text"})

mongodb全文索引查詢的用法:
db.article.find({$text:{$search:"coffee"}}) #查詢包含coffee的內容的文檔
db.article.find({$text:{$search:"aa bb cc"}}) #(或查詢)查詢包含aa或bb或cc的內容的文檔
db.article.find({$text:{$search:"aa bb -cc"}}) #-為排除包含有cc內容的文檔
db.article.find({$text:{$search:"\"aa\" \"bb\" \"cc\""}}) #(與查詢)加查詢內容前加上\",查詢既包含aa又包含bb cc的內容的文檔。

全文索引的限制:
一個集合只能建立一個全文索引,每次查詢只能指定一個$text查詢
$text不能出現在$nor查詢中
查詢如果包含了$text,$hint不起作用
不支援中文全文檢索索引

更多MongoDB相關教程見以下內容:

CentOS 編譯安裝 MongoDB與mongoDB的php擴充

CentOS 6 使用 yum 安裝MongoDB及伺服器端配置

Ubuntu 13.04下安裝MongoDB2.4.3

MongoDB入門必讀(概念與實戰並重)

Ubunu 14.04下MongoDB的安裝指南

《MongoDB 權威指南》(MongoDB: The Definitive Guide)英文文字版[PDF]

Nagios監控MongoDB分區叢集服務實戰

基於CentOS 6.5作業系統搭建MongoDB服務

MongoDB 的詳細介紹:請點這裡
MongoDB 的:請點這裡

本文永久更新連結地址:

相關文章

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.