Re: split on white space and then EdgeNGramFilterFactory

2012-08-03 Thread Rajani Maski
Yes this works, Thank you. Regards Rajani On Thu, Aug 2, 2012 at 6:04 PM, Jack Krupansky wrote: > Only do the ngram filter at index time. So, add a query-time analyzer to > that field type but without the ngram filter. > > Also, add &debugQuery to your query request to see what Lucene query is

Re: split on white space and then EdgeNGramFilterFactory

2012-08-02 Thread Jack Krupansky
Only do the ngram filter at index time. So, add a query-time analyzer to that field type but without the ngram filter. Also, add &debugQuery to your query request to see what Lucene query is generated. And, use the Solr admin analyzer to validate both index-time and query-time analysis of yo