I have a database that consist of Names and locations. I am searching for names using case insensitivity USING SOLR. However I am not able to find any way I can do that. For example: I have a list of Names:
Rajeev rajeev raj Raj
when i search for cname:raj* i get the following rajeev raj
What do i do to get Rajeev and Raj also.
You should add a new filter solr.LowerCaseFilterFactory to convert everything to a lowercase , this should apply to index and query.
https://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#Analyzers
An example:
Schema.xml
Where text_general type