Re: Conflict in wildcard query and spellchecker in solr search

2011-06-22 Thread Romi
how can I lowercase query outside of Solr before sending a query? - Thanks & Regards Romi -- View this message in context: http://lucene.472066.n3.nabble.com/Conflict-in-wildcard-query-and-spellchecker-in-solr-search-tp3095198p3095345.html Sent from the Solr - User mailing list archive at Nab

Re: Conflict in wildcard query and spellchecker in solr search

2011-06-22 Thread Markus Jelsma
No, wildcard queries are not analyzed. They are not _passed_ through your analyzers. If you lowercase at index-time, you must lowercase it outside of Solr before sending a query. On Wednesday 22 June 2011 14:35:12 Romi wrote: > * > > > > words="stopwords.txt"/> >

Re: Conflict in wildcard query and spellchecker in solr search

2011-06-22 Thread Romi
* * I am using this fieldtype and applied these filters. for wildcard searches do i n

Re: Conflict in wildcard query and spellchecker in solr search

2011-06-22 Thread Markus Jelsma
Wildcard queries are not analyzed. Lowercase your query beforehand. On Wednesday 22 June 2011 14:08:48 Romi wrote: > Using solr search when i search for rin* it run wildcard query and i get > the result for ring but when i search for Rin* it run spellchecker and > then gives the result for ring. w