Re: handling case insensitive and regex

2012-03-01 Thread Ahmet Arslan
> but the following doesn't work. > TESTING* Please see the following writeups: http://wiki.apache.org/solr/MultitermQueryAnalysis http://www.lucidimagination.com/blog/2011/11/29/whats-with-lowercasing-wildcard-multiterm-queries-in-solr/

handling case insensitive and regex

2012-03-01 Thread Neil Hart
I'm just starting out... for either testing QA TESTING QA I can query with the following strings and find my text: testing TESTING testing* but the following doesn't work. TESTING* any ideas? thanks Neil

Re: handling case insensitive and regex

2012-02-29 Thread Emmanuel Espina
What query parser are you using? It looks like Lucene Query Parser or edismax. The cause is that wildcard queries does not get analyzed. So even if you have lowercase filters in the analysis chain that is not being applied when you search using * Thanks Emmanuel 2012/2/29 Neil Hart : > I'm just s

handling case insensitive and regex

2012-02-29 Thread Neil Hart
I'm just starting out... for either testing QA TESTING QA I can query with the following strings and find my text: testing TESTING testing* but the following doesn't work. TESTING* any ideas? thanks Neil