I am encountering an issue with fuzzy search in Elasticsearch. When a user searches for the term "cooler", I want only products that match that exact term to be returned, and I do not want products with similar terms like "cooker" to be included in the results. However, when a user searches for a similar term like "coozer" or "coqler", I want both "cooler" and "cooker" products to be returned in the results.
In summary, I want fuzzy search to only return exact matches for the search term "cooler", but to return both "cooler" and "cooker" products when non-dictionary words are used.