Re: Search with accent

2010-11-10 Thread Tomas Fernandez Lobbe
I don't understand, when the user search for perequê you want the results for perequê and pereque? If thats the case, any field type with ISOLatin1AccentFilterFactory should work. The accent should be removed at index time and at query time (Make sure the filter is being applied on both

Re: Search with accent

2010-11-10 Thread Claudio Devecchi
Tomas, Let me try to explain better. For example. - I have 10 documents, where 7 have the word pereque (without accent) and 3 have the word perequê (with accent) When I do a search pereque, solr is returning just 7, and when I do a search perequê solr is returning 3. But for me, these words

Re: Search with accent

2010-11-10 Thread Savvas-Andreas Moysidis
have you tried using a TokenFilter which removes accents both at indexing and searching time? If you index terms without accents and search the same way you should be able to find all documents as you require. On 10 November 2010 20:08, Claudio Devecchi cdevec...@gmail.com wrote: Tomas, Let

Re: Search with accent

2010-11-10 Thread Tomas Fernandez Lobbe
, 10 de noviembre, 2010 17:08:06 Asunto: Re: Search with accent Tomas, Let me try to explain better. For example. - I have 10 documents, where 7 have the word pereque (without accent) and 3 have the word perequê (with accent) When I do a search pereque, solr is returning just 7, and when I do

Re: Search with accent

2010-11-10 Thread Savvas-Andreas Moysidis
: miércoles, 10 de noviembre, 2010 17:08:06 Asunto: Re: Search with accent Tomas, Let me try to explain better. For example. - I have 10 documents, where 7 have the word pereque (without accent) and 3 have the word perequê (with accent) When I do a search pereque, solr is returning just 7

Re: Search with accent

2010-11-10 Thread Claudio Devecchi
extrage results. You'll have to perform a full reindex. Tomás De: Claudio Devecchi cdevec...@gmail.com Para: solr-user@lucene.apache.org Enviado: miércoles, 10 de noviembre, 2010 17:08:06 Asunto: Re: Search with accent Tomas, Let me try to explain

Re: Search with accent

2010-11-10 Thread Tomas Fernandez Lobbe
. De: Savvas-Andreas Moysidis savvas.andreas.moysi...@googlemail.com Para: solr-user@lucene.apache.org Enviado: miércoles, 10 de noviembre, 2010 17:27:24 Asunto: Re: Search with accent have you tried using a TokenFilter which removes accents both at indexing and searching time? If you index terms

Re: Search with accent

2010-11-10 Thread Claudio Devecchi
savvas.andreas.moysi...@googlemail.com Para: solr-user@lucene.apache.org Enviado: miércoles, 10 de noviembre, 2010 17:27:24 Asunto: Re: Search with accent have you tried using a TokenFilter which removes accents both at indexing and searching time? If you index terms without accents and search

Re: Search with accent

2010-11-10 Thread Tomas Fernandez Lobbe
-Andreas Moysidis savvas.andreas.moysi...@googlemail.com Para: solr-user@lucene.apache.org Enviado: miércoles, 10 de noviembre, 2010 17:27:24 Asunto: Re: Search with accent have you tried using a TokenFilter which removes accents both at indexing and searching time? If you index terms without accents

Re: Search with accent

2010-11-10 Thread Claudio Devecchi
: Claudio Devecchi cdevec...@gmail.com Para: solr-user@lucene.apache.org Enviado: miércoles, 10 de noviembre, 2010 17:44:01 Asunto: Re: Search with accent Ok tks, I'm new with solr, my doubt is how can I enable theses feature. Or these feature is already working by default? Is this something