Did you rebuild the index? Changing the analyzer for the index doesn't
affect already indexed documents.

Tom


On Tue, Dec 8, 2009 at 11:57 AM, insaneyogi3008 <insaney...@gmail.com>wrote:

>
> Hello,
>
> I tried to force case insensitive search by having the following setting in
> my schema.xml file which I guess is standard for Case sensitive searches :
>
> <fieldType name="text_ws" class="solr.TextField"
> positionIncrementGap="100">
>         <analyzer type = "index">
>        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
>        <filter class = "solr.LowerCaseFilterFactory"/>
>      </analyzer>
>
>    <analyzer type="query">
>        <tokenizer class = "solr.WhitespaceTokenizerFactory"/>
>        <filter class="solr.LowerCaseFilterFactory"/>
>
>    </analyzer>
>    </fieldType>
>
>
> However when I perform searches on "San Jose" & "san jose" , I get 16 & 0
> responses back respectively is there anything else I missing here ?
>
>
> --
> View this message in context:
> http://old.nabble.com/Case-Insensitive-search-not-working-tp26699734p26699734.html
> Sent from the Solr - User mailing list archive at Nabble.com.
>
>

Reply via email to