Re: problems with search in solr

2012-03-22 Thread Rafał Kuć
Hello! The probable cause is the use of solr.PorterStemFilterFactory. You can check it using the Solr admin or by removing that filter and reindexing your data. -- Regards, Rafał Kuć Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch Good morning: I have problems with the results

RE: problems with search in solr

2012-03-22 Thread Juan Pablo Mora
Remove the stemmer filter. Caso and casa are transformed into cas if you use the stemmer filter. En español: Quita el filtro de stemmer, que se usa para sacar la raiz de las palabras, pero en tu caso la raíz de casa y caso es la misma, cas. Un saludo. De: PINA

Re: problems with search in solr

2012-03-22 Thread Tomás Fernández Löbbe
Or if you still want to have stemming, you could use a Spanish stemmer, like: filter class=solr.SnowballPorterFilterFactory language=Spanish/ or filter class=solr.SpanishLightStemFilterFactory/ Tomás On Thu, Mar 22, 2012 at 11:09 AM, Juan Pablo Mora jua...@informa.es wrote: Remove the stemmer