Open haversnail opened 1 year ago
This issue has been known about for about 3 years - Elastic search, I hope you guys realize that this exact issue is your competitors greatest strength
@epiphanatic care to contribute, maybe start by adding (failing) YAML REST tests that express the behavior you're looking for?
Is your feature request related to a problem? Please describe. Yes, see this open issue from Elasticsearch. TL;DR, querying
search_as_you_type
fields with the recommendedmulti_match
bool_prefix
query does not take into account any "fuzziness" value.Steps to reproduce:
PUT /my_index
PUT /my_index/_doc/1
GET /my_index/_search
Currently, the steps above yield the following result:
Describe the solution you'd like It would be beneficial and intuitive to have fuzziness applied to the final search term, so that results are still returned as they would be for other common datatypes/query types with a
fuzziness
property specified.Describe alternatives you've considered
lic
would no longer return the document with the termlicense
as it would normally.suggestion
block to the query