“Recherche de texte MongoDB” Réponses codées

Recherche de texte MongoDB

db.stores.find( { $text: { $search: "java coffee shop" } } )
/*
  Use the $text query operator to perform text searches on 
  a collection with a text index.

  $text will tokenize the search string using whitespace and most 
  punctuation as delimiters, and perform a logical OR of all such 
  tokens in the search string.

  For example, you could use the following query to find all 
  stores containing any terms from the list "coffee", "shop", and "java":
*/
florinrelea

MONGODB Text Search Exact Match

Model.find({
  $text: {
  	$search: `"exact_match"`
  }
})
florinrelea

Réponses similaires à “Recherche de texte MongoDB”

Questions similaires à “Recherche de texte MongoDB”

Plus de réponses similaires à “Recherche de texte MongoDB” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code