Itay Moav -Malimovka
Itay Moav -Malimovka

Reputation: 53606

finding matches for part words in SOLR

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

Answers (1)

Persimmonium
Persimmonium

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

Related Questions