Usually what's going on in this case is that wildcards aren't analyzed, so
they're never going through the asciifoldingfilter. So you're looking in your
index for françois* and, since the filter isn't applied, the 'ç' isn't
changed to 'c'.

You can infer this from tacking &debugQuery=on to your URL and looking
at the parsed query near the bottom....

Best
Erick

On Fri, Sep 2, 2011 at 4:15 AM, deniz <denizdurmu...@gmail.com> wrote:
> I am trying to implement multi accented search on solr... basically i am
> using asciifolderfilter to provide this feature... but i have a problem...
>
> http://localhost:8983/solr/select/?q=*francois*&version=2.2&start=0&rows=10&indent=on
> http://localhost:8983/solr/select/?q=*francois**&version=2.2&start=0&rows=10&indent=on
> http://localhost:8983/solr/select/?q=*françois*&version=2.2&start=0&rows=10&indent=on
>
> these three above working well and returning correct results, however
>
> http://localhost:8983/solr/select/?q=*françois**&version=2.2&start=0&rows=10&indent=on
>
> the link above returns 0 matching documents...
>
> anybody has any ideas on this?  could it be because of encoding issue?
>
> -----
> Zeki ama calismiyor... Calissa yapar...
> --
> View this message in context: 
> http://lucene.472066.n3.nabble.com/Solr-and-Encoding-Issue-tp3303627p3303627.html
> Sent from the Solr - User mailing list archive at Nabble.com.
>

Reply via email to