On Mar 12, 2009, at 10:47 AM, Bruno Aranda wrote:
Doing this query:

http://localhost:18080/solr/core_pub/select/?q=mitab:Nefh

Find 1 result. The term "Nefh" is found in the field "mitab".

Doing:

http://localhost:18080/solr/core_pub/select/?q=mitab:Nefh*

Finds nothing.

I have realised that Ne* of Nef* do not return results as well, using the
textIntact type...

Ah... the problem is that wildcarded query terms do not get analyzed, nor do they get lowercased (this is an open issue with Solr to at least make lowercasing configurable, Lucene supports it).

Try lowercasing in your query client, that should do the trick.

        Erik

Reply via email to