Może wyszukiwanie pełnotekstowe jest twoją odpowiedziąhttp://docs.mongodb. org/manual/core/index-text/ http://docs.mongodb.org/manual/reference/operator/ zapytanie/tekst/
Fragmenty kodu z tych odniesień:
1 - db.comments.ensureIndex( { comments: "text" } )
Poniższy kod wyszukuje komentarze zawierające słowa To lub inny ale nie zawierają słowa hehe :
2- db.comments.find( { $text: { $search: "This another -hehe" } } )