“búsqueda de texto de MongoDB” Código de respuesta

búsqueda de texto de 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

Respuestas similares a “búsqueda de texto de MongoDB”

Preguntas similares a “búsqueda de texto de MongoDB”

Más respuestas relacionadas con “búsqueda de texto de MongoDB” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código