On Mon, Jul 12, 2010 at 4:39 PM, imranak <imranak...@gmail.com> wrote:
> A general search like 'computer' returns results but 'com*er' doesn't return
> any results.

This is due to issues with wildcards and stemming.
"computer" is indexed and searched as "comput"... but it's not
generally possible to stem wildcarded terms.

So comp*er won't match (the terms in the index are "comput")
but comp*r should.

If wildcarding is important, use a field type without a stemmer.

-Yonik
http://www.lucidimagination.com

Reply via email to