時間:2024-03-04 00:33作者:下載吧人氣:26
前言
MongoDB支持對文本內容執行文本搜索操作,其提供了索引text index和查詢操作$text來完成文本搜索功能。下面我們通過一個簡單的例子來體驗一下MongoDB提供的全文檢索功能。
方法示例
1.新建blogs collection,并插入如下的document。
db.blogs.insert({_id:1,title:”MongoDB text search”,content:”this is a simple MongoDB text search introduction”})
db.blogs.insert({_id:2,title:”MongoDB text index”,content:”this is ae MongoDB text index introduction”})
db.blogs.insert({_id:3,title:”MongoDB text operators”,content:”this is ae MongoDB text query introduction”})
網友評論