Re: Wildcard malfunctioning

2014-05-05 Thread Alexandre Rafalovitch
I mark all the filters that support wildcards with (multi) on my list: http://www.solr-start.com/info/analyzers/ . I uses actual interface markers to derive that list, so it should be most up to date. Regards, Alex. Personal website: http://www.outerthoughts.com/ Current project: http://www.sol

Re: Wildcard malfunctioning

2014-05-05 Thread Shawn Heisey
On 5/5/2014 5:19 AM, Jack Krupansky wrote: > But, you stay that you are using the stemmer to remove diacritical > marks... you can/should use ASCIIFoldingFilterFactory or > MappingCharFilterFactory. I like ICUFoldingFilterFactory for this, but it does require additional contrib jars (included in t

RE: Wildcard malfunctioning

2014-05-05 Thread Román González
SOLVED! First solution I tried (the Ahmet's one) worked fine! Thank you! -Mensaje original- De: Jack Krupansky [mailto:j...@basetechnology.com] Enviado el: lunes, 05 de mayo de 2014 13:19 Para: solr-user@lucene.apache.org; rgonza...@normagricola.com Asunto: Re: Wildcard malfuncti

Re: Wildcard malfunctioning

2014-05-05 Thread Jack Krupansky
Generally, stemming filters are not supported when wildcards are present. Only a small subset of filters work with wildcards, such as the case conversion filters. But, you stay that you are using the stemmer to remove diacritical marks... you can/should use ASCIIFoldingFilterFactory or Mapping

Re: Wildcard malfunctioning

2014-05-05 Thread Ahmet Arslan
Hi Roman, What you are experiencing is a OK and known. Stemming and wildcard searches could be counter intuitive sometimes. But luckily remedy is available. Use the following filters, and your wildcard searches will be happy. Please not that this change will require solr-restart and re-index.