Update elastic analyzer for autocomplete search #3
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Our mapping and search using
match_phrase_prefixworks very well, but there are some improvements that can be made.Currently we don't have support for typing queries that do not match the entire beginning for the result.
E.g.
What looks like a good solution to this is to analyze as ngrams. A ngram analyzer will create many more terms for each input, all pointing to the same document. Taking in account multiple matching terms pointing at the same document could improve hit-rate for slightly misspelled queries.
Research: