I have a field type like the following:

<fieldType name="text_general_name" class="solr.TextField"
positionIncrementGap="100">
      <analyzer>
        <tokenizer class="solr.StandardTokenizerFactory"/>
        <filter class="solr.StopFilterFactory" ignoreCase="true"
words="stopwords.txt" enablePositionIncrements="true" />
        <filter class="solr.LowerCaseFilterFactory"/>
      </analyzer>
    </fieldType>


This type is behaving differently in Solr 3.3 and 3.6. In 3.3, the following
doesn't return any records because there is no author called 'Gerri Killis'.
But there is an author called ''Gerri Jonathan'.

/select/?q=author:Gerri\ Killis

In 3.6, the following returns records because there is an author called
'Gerri Jonathan'. So something is wrong in 3.6?. I didn't expect any records
here, because there is no author called 'Gerri Killis'.

/select/?q=author:Gerri\ Killis


Your help is appreciated.

Thanks
Srini



--
View this message in context: 
http://lucene.472066.n3.nabble.com/StandardTokenizerFactory-is-behaving-differently-in-Solr-3-6-tp3998623.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to