mongodb全文索引举例

索引的创建
```
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)