Look at http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters.
But before you make changes, get familiar with the analysis section of the admin interface: http://localhost:8983/solr/admin/analysis.jsp?highlight=on Of course, adjust the path for your server. This will let you see what the analyzers are doing at index and query time, and is VERY helpful in understanding the analysis process. Tom On Mon, Dec 7, 2009 at 3:36 PM, insaneyogi3008 <insaney...@gmail.com> wrote: > > Hello, > > I was performing a search on different versions of the term "San Jose" on > my > Solr Instance , the differing versions being : > > san jose(all lowercase) > San jose(One uppercase) > San Jose (Capital first letters) > SAN JOSE (ALL Caps) > > each of these phrases return a different number of "hits" back as response > objects . for example > > san jose returns -> <result name="response" numFound="0" start="0"> > San jose returns -><result name="response" numFound="4" start="0"> > San Jose returns -><result name="response" numFound="16" start="0"> > SAN JOSE returns -> <result name="response" numFound="853" start="0"> > > How do I make my search not case sensitive? > -- > View this message in context: > http://old.nabble.com/Inconsistent-Search-Results-for-different-flavors-of-same-search-term-tp26686294p26686294.html > Sent from the Solr - Dev mailing list archive at Nabble.com. > >