たぶん、全文検索があなたの答えです http://docs.mongodb。 org / manual / core / index-text / http://docs.mongodb.org/manual/reference/operator/クエリ/テキスト/
これらの参照からのコードスニペット:
1 - db.comments.ensureIndex( { comments: "text" } )
次のコードは、これという単語を含むコメントを検索します または別の ただし、 heheという用語は含まれていません :
2- db.comments.find( { $text: { $search: "This another -hehe" } } )