I want to be able to handle fuzzy search, as well as synonyms at the same time. I tried it in a several ways, but I cannot get it working.
I have these values in my index:
white
black
light
dark
and this synonym rules:
white,light
black,dark
If I perform the query queryType=full&search=light
or queryType=full&search=white
, it always returns both values, light and white.
So synonyms are working.
If I perform the query queryType=full&search=light~1
, then only light will be returned. But where is white?
Is the combination of fuzzy search and synonyms not possible yet, or am I doing something wrong?