Search exact words in elastichsearch
Using elasticseach, I want to search all documents with two words. I use: { "query": { "match": { "text": "word1 word2" } } } but instead of having documents with word1 and word2, i have documents with word1 or word2. ¿how can i search docs with word1 AND word2? >Solution : You can use operator… Read More Search exact words in elastichsearch