We can conclude that the accents did not get indexed and we know from the
other experiment that the field type analyzer is not at fault.
1. How are you indexing the data? Verify what character encoding it is
using.
2. Try manually indexing some accented data, like with a curl command, and
see if the accents are missing.
curl http://localhost:8983/solr/update?commit=true -H
'Content-type:application/xml' -d '
<add>
<doc>
<field name="id">doc-1</field>
<field name="name">Hola Mañana en le Café, habla el Académie
française!</field>
</doc>
</add>'
The above worked for me with the standard Solr 4.3 example schema.
-- Jack Krupansky
-----Original Message-----
From: jignesh
Sent: Monday, May 20, 2013 1:24 PM
To: solr-user@lucene.apache.org
Subject: Re: Not able to search Spanish word with ascent in solr
Here is the output using
/solr/terms?terms.fl=name&terms.prefix=a
----------
<response><lst name="responseHeader"><int name="status">0</int><int
name="QTime">1</int></lst><lst name="terms"><lst name="name"><int
name="a">716</int><int name="alt">509</int><int name="aacute">384</int><int
name="as">260</int><int name="amp">176</int><int name="al">95</int><int
name="azul">67</int><int name="ahumado">61</int><int name="and">60</int><int
name="acute">53</int></lst></lst></response>
------------
What should I conclude from above?
Thanks
Waiting for reply
--
View this message in context:
http://lucene.472066.n3.nabble.com/Not-able-to-search-Spanish-word-with-ascent-in-solr-tp4064404p4064703.html
Sent from the Solr - User mailing list archive at Nabble.com.