On 03.10.2010 09:20, Andy wrote:
NGramFilterFactory would then take that one toke ("electric guitar")
and generate N-grams out of it. One of the ngrams would be "guit"
because "guit" is a substring of "electric guitar".

AFAIK it only produces prefix-strings like

gui
guit
guita
guitar

etc.
So that you can do a prefix search without a wildcard. So it is enough to search for "guit" and you do not need to search for "guit*". The latter wildcard string can make trouble with stopwordfiltering and (at least in solr 1.3) with text snippet generating.

Greetings,
Gert

Reply via email to