elasticsearch - Can I use the phrase_prefix query type with the fuzziness option? -
i'm using fuzziness
option , want add "prefix functionality" find documents 1 of fields contains term starts x.
i have multi_match
query , understanding can't use type phrase_prefix
fuzziness
. there way can it?
here's query:
"query": { "multi_match": { "query": this.queryterm, "operator": "and", "fields": ["title", "content", "author.name", "tags"], "fuzziness": "auto" } }
Comments
Post a Comment