Re: Custom Shingle Factory Filter Requirement

2011-12-28 Thread Vannia Rajan
On Tue, Dec 27, 2011 at 1:10 PM, Ahmet Arslan wrote: > > To achieve this behavior, you can use StandardTokenizerFactory and > EdgeNGramFilterFactory and LowerCaseFilterFactory at index time. > > > http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.EdgeNGramFilterFactory > Thanks, b

Re: Custom Shingle Factory Filter Requirement

2011-12-26 Thread Ahmet Arslan
>   I'm trying to implement an advanced Auto-Suggest > field. Consider an > example input String: > >    "Word1 Word2 Word3 Word4 Word5 Word6" > >    I just want this field to auto-suggest > content based on whatever i type > (no matter i start typing from word1 or word4). To achieve this beha

Custom Shingle Factory Filter Requirement

2011-12-26 Thread Vannia Rajan
Hi, I'm trying to implement an advanced Auto-Suggest field. Consider an example input String: "Word1 Word2 Word3 Word4 Word5 Word6" I just want this field to auto-suggest content based on whatever i type (no matter i start typing from word1 or word4). I tried using ShingleFilterFactory,