Hi, a question regarding the SOLR fuzziness.
we have a indexedProperty called "categoryName_text_de_de_mv" and in my index it has some values, for example ["Pullover", "Mode", "Strick"].
If I execute a query like
select?d&q=categoryName_text_de_de_mv:pulloer~2&wt=json
I get the expected amount of results. Which means the search term "pulloer" is used as "Pullover", as i expected the fuzziness to work. BUT If I remove a letter:
select?&q=categoryName_text_de_de_mv:pulover~2&wt=json
I get 0 results.
In my understanding the Damerau-Levenshtein Distance used by SOLR should take this into consideration.