hi 
i dont understand why though.

here is my displayName filed type "text"


    <fieldType name="text" class="solr.TextField" positionIncrementGap="100"> 
      <analyzer type="index"> 
        <tokenizer class="solr.WhitespaceTokenizerFactory"/> 
        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" 
ignoreCase="true" expand="true"/>
        <!-- Case insensitive stop word removal.
             enablePositionIncrements=true ensures that a 'gap' is left to
             allow for accurate phrase queries.
        -->
        <filter class="solr.StopFilterFactory"
                ignoreCase="true"
                words="stopwords.txt"
                enablePositionIncrements="true"
                />
        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" 
generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" 
splitOnCaseChange="1"/>
        <filter class="solr.LowerCaseFilterFactory"/>
        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
      </analyzer>
      <analyzer type="query">
        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" 
ignoreCase="true" expand="true"/>
        <filter class="solr.StopFilterFactory" ignoreCase="true" 
words="stopwords.txt"/>
        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" 
generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" 
splitOnCaseChange="1"/>
        <filter class="solr.LowerCaseFilterFactory"/>
        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
      </analyzer>
    </fieldType>


why would search term not be "iphone 4" and only "iphone"

Synonyms.txt
iphone 4, itouch 

thanks
abhay
Date: Wed, 31 Aug 2011 16:57:48 -0700
From: ml-node+3299919-1944219593-210...@n3.nabble.com
To: ajdabhol...@hotmail.com
Subject: RE: word proximity and queryoperator OR



        You might want to check your analyzers in schema.xml. It appears 
numbers are filtered out.


So basically you are searching for "iphone" instead of "iphone 4"


 
        
        

        

        
        
                If you reply to this email, your message will be added to the 
discussion below:
                
http://lucene.472066.n3.nabble.com/word-proximity-and-queryoperator-OR-tp3299729p3299919.html
        
        
                
                To unsubscribe from word proximity and queryoperator OR, click 
here.
                                                  

--
View this message in context: 
http://lucene.472066.n3.nabble.com/word-proximity-and-queryoperator-OR-tp3299729p3300214.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to