Reputation: 53606
I have a field with value of "[email protected]"
I want get back this field If I search for "sible".
I use ngrams filter, which would help only if the string was "[email protected]"
Which filters/tokenizers should I use for such a thing (pretty much the LIKE in sql).
Upvotes: 0
Views: 103
Reputation: 15789
EdgeNGramFilterFactory would help only if the string was "[email protected]" but NGramFilterFactory will get what you want with "[email protected]" too.
Upvotes: 3