0 votes
in ElasticSearch by
Difference between match and term query.

1 Answer

0 votes
by

Match query analyzes the input request and creates basic queries. While in term query, exact matching is done.

For example, if we search for the document containing name: Anurag, and if any document has name = Anupriya, then it will also be the result of the search query in case of Match query. On the other hand, exact matching is performed in term query. So, the document containing name: Anupriya will not return.

Related questions

0 votes
asked Jun 12, 2023 in Sql by Robin
0 votes
asked Apr 15, 2023 in JAVA by kamalkhandelwal29
0 votes
asked Jul 8, 2022 in ElasticSearch by Robin
...