I'm new to Elasticsearch. I'm trying to search keywords in Elasticsearch with the match_phrase.
And I don't want to match all terms, so I add the minimum_should_match in search queries, but it seems like it is impossible (ES doesn't support it).
What I need:
- The slop of each term is 0 or bigger.
- Matching terms must appear in their specified order.
- It doesn't have to match every one of them. And I can specify any parameter such as the ** minimum_should_match**.
Anybody has experience on this?
Thanks in advance.