Search code examples
solrfilterlucenestringtokenizersolr-query-syntax

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).


Solution

  • EdgeNGramFilterFactory would help only if the string was "[email protected]" but NGramFilterFactory will get what you want with "[email protected]" too.