I am using ElasticSearch and I am trying to implement match_phrase/string + fuzziness but it seems like it is impossible (not that much examples online, no such cases in the documentation).
What I need: phrase/string matching + fuzziness + slop based on every value of the field individually.
What I've tried so far (and I still don't have a solution I need):
query_string - it has fuzziness and slop included. However, it gathers a string through all of the values of the field through one document.
match_phrase - it has slop included, but there is no fuzziness. What is good - it looks for a phrase match in at least one of the values of the field, not gathers the string through all the values of the document's field.
What I need:
Anybody has experience on phrase matching including fuzziness on ElasticSearch?
Thanks in advance.