How could I know which query parser I am using?
Here is the part of my schema that I am using


    
    <fieldType name="text_ar" class="solr.TextField"
positionIncrementGap="100">
      <analyzer> 
        <tokenizer class="solr.WhitespaceTokenizerFactory"/>       
                <filter class="solr.PatternReplaceFilterFactory" pattern="(\()"
replacement="" replace="all"/>
      </analyzer>
    </fieldType>

 
   <field name="text" type="text_ar" indexed="true" stored="true"
termVectors="true" multiValued="true"/>

As shown even if I tried to remove "(" the same happened for parsed query
and for numFound.



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Solr-Remove-specific-punctuation-marks-tp4009795p4009915.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to