I have install solr 3.5
I would like to search words(Spanish words) like

-> enseñé
-> étnico
-> castaño
-> después

with ascent ñ,é etc.

But solr is not search such words from index.
I have used
-------------
 
    <fieldType name="text_es" class="solr.TextField"
positionIncrementGap="100">
      <analyzer> 
        <tokenizer class="solr.StandardTokenizerFactory"/>
        <filter class="solr.LowerCaseFilterFactory"/>
        <filter class="solr.StopFilterFactory" ignoreCase="true"
words="lang/stopwords_es.txt" format="snowball"
enablePositionIncrements="true"/>
        <filter class="solr.SpanishLightStemFilterFactory"/>
        
      </analyzer>
    </fieldType>
-------------   
like : 
<field name="name" type="text_es" indexed="true" stored="true"/>
<field name="features" type="text_es" indexed="true" stored="true"
multiValued="true"/>

But still not able to search Spanish word with ascent..

Please let me know if I am missing anything?

Thanks



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Not-able-to-search-Spanish-word-with-ascent-in-solr-tp4064404.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to