Matches query equivalent to terms query

I'd like to know why elasticsearch doesn't support array of values for different kinds of queries.

As of now i'm only looking for something like matches (something similar to terms query where array of terms are accepted)

The sole reason being to reduce the size of the query in general & because a match clause for each string causes the max-clause-count threshold to be breached

Hi Faiz.
A match query takes a typically unstructured string and tokenizes it into multiple values behind the scenes.
A terms query takes structured strings that are already tokenized and presented in an array.

so you're suggesting i can just concatenate multiple strings into a single string?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.