I'm facing the following issue: during the search with "ΚΩΣ" term, it starts creating combinations as if user have misspelled the search word:
What I can't undetstand is how to configure this logic (as you can see on the screen, it has combinations like "κωσ" which have only 1 common character with the original query).
I want to make max number of changes to the term allowed (like maxEdits param in spellchecking) to 1, so that it won't return unexpected results.
My problem is that when I send spellcheck param as "false" to SOLR, result doesn't change (which makes me think it's not related to searchComponent). On the other hand, there's this filter called SynonymGraphFilterFactory
That doesn't have any configurations like maxEdits allowed (searched through SOLR documentation).
Any ideas on how can I shorten number of changes to the original term? Or maybe I'm missing something important