MongoDB 全文检索
全文检索对每一个词建立一个索引,指明该词在文章中出现的次数和位置,当用户查询时,检索程序就根据事先建立的索引进行查找,并将查找的结果反馈给用户的检索方式。
启用全文检索
MongoDB 在 2.6 版本以后是默认开启全文检索的,如果你使用之前的版本,你需要使用以下代码来启用全文检索:
db.adminCommand({setParameter:true,textSearchEnabled:true})
或者使用命令:
mongod --setParameter textSearchEnabled=true
创建全文索引
构造演示数据
db.post.insert(
{
"title":"MongoDB 全文检索",
"content":"Building on the Best of Relational with the Innovations of NoSQL"
}
)
db.post.insert(
{
"title":"MongoDB 大法好",
"content":"MongoDB 是一个基于分布式文件存储的数据库。由 C++ 语言编写。旨在为 WEB 应用提供可扩展的高性能数据存储解决方案"
}
)
db.post.insert(
{
"title":"MongoDB 哈哈哈",
"content":"Continuous backups — MongoDB Atlas includes a continuous backup solution with point-in-time restores and queryable snapshots, which allow you to perform "
}
)
创建索引
对文档数据中的content字段创建索引
db.post.createIndex({ content : "text" })
查看索引
db.post.getIndexes()
使用全文索引
现在我们已经对 content 建立了全文索引,我们可以搜索文章中的关键词 MongoDB:
db.post.find({$text:{$search:"MongoDB"}}).pretty()
通过关键字 MongoDB 查询出两条结果:
注意: 默认使用英文搜索,不支持中文,MongoDB3.2之后支持中文,为了支持中文,MongoDB Enterprise集成了Basis Technology Rosette语言学平台(RLP),需要下载sdk,获得许可证,具体请参考 MongoDB文档
删除索引
通过查询 db.post.getIndexes() 得到索引的名字后可以用下面命令删除索引
db.post.dropIndex("content_text")