I am looking for a way to implement the auto-suggest with synonyms & fuzziness
For example, when the user tried to search for "replce ar" My synonym list has ar => audio record
So, the result should include the items matching changing audio record replacing audio record etc..,
Here we need fuzziness because there is a typo on "replace" (in the user's search text) Synonyms to match ar => audio record Auto-suggest with regex pattern.
Is it possible to implement all the three features in a single field?
Edit: a regex+fuzzy just throws error. I haven't well explained my need of a regex-pattern. so, i needed a Regex for doing a partial word lookup ('encyclopedic' contains 'cyclo').
now, after investigating what options do i have for this purpose, directing me to the NGram Tokenizer and looking into the other suggesters, i found that maybe Phrase suggester is realy what I'm looking for, so I'll try it & tell you about.