You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Satyam Kumar Asis <as...@gmail.com> on 2011/05/10 18:43:59 UTC

Multiple character wildcard searches looks for 0 or more characters

Hello,

I am using solr search application, try to search text with wildcard
character getting some weird result.

Case :- 1 q=tes*

Result: test,  test1, test2

Case:- 1 q=test*

Result: NONE

Kindly help me to solve above problem.

Thanks & Regards,
Satyam

Re: Multiple character wildcard searches looks for 0 or more characters

Posted by Ahmet Arslan <io...@yahoo.com>.
> I am using solr search application, try to search text with
> wildcard
> character getting some weird result.
> 
> Case :- 1 q=tes*
> 
> Result: test,  test1, test2
> 
> Case:- 1 q=test*
> 
> Result: NONE
> 
> Kindly help me to solve above problem.

Do you have stemming filter defined in your analyzer definition? It may be reducing "test" to "tes".