“mongodb текст поиск точного совпадения” Ответ

Поиск текста 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 текст поиск точного совпадения

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

Ответы похожие на “mongodb текст поиск точного совпадения”

Вопросы похожие на “mongodb текст поиск точного совпадения”

Больше похожих ответов на “mongodb текст поиск точного совпадения” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования