Étape 1 :
Créer un index de texte
db.sampleCollection.createIndex( { "$**": "text" } )
Étape 2 :
Utilisez l'index de texte pour rechercher le mot concerné
db.sampleCollection.find( { $text: { $search: "wordToSearch" } })
Créer un index de texte
db.sampleCollection.createIndex( { "$**": "text" } )
Utilisez l'index de texte pour rechercher le mot concerné
db.sampleCollection.find( { $text: { $search: "wordToSearch" } })