索引的创建
```
db.project.createIndex({name:"text",description:"text"})
```
基于索引分词进行查询
```
db.project.find({$text:{$search:"java jquery"}})
```
基于索引 短语
```
db.project.find({$text:{$search:"\"Apache ZooKeeper\""}})
```
过滤指定单词
```
db.project.find({$text:{$search:"java apache -阿里"}})
```
查看执行计划
```
db.project.find({$text:{$search:"java -阿里"}}).explain("executionStats")
mongodb全文索引举例
最新推荐文章于 2025-02-25 20:06:59 发布