Wildcard applies only to a single term. The escaped space suggests that you
are trying to match a wildcard on multiple terms.
Try the contrib complex phrase query parser.
-- Jack Krupansky
-----Original Message-----
From: Prasi S
Sent: Friday, September 13, 2013 6:37 AM
To: solr-user@lucene.apache.org
Subject: Solr wildcard search
Hi all,
I am working with wildcard queries and few things are confusing.
1. Does a wildcard search omit the analysers on a particular field?
2. I have searched for
q=google\ technology - >gives result
q=google technology -> Gives results
q=google tech* -> gives results
q=google\ tech* -> 0 results. The debug Query for the last query is <str
name="parsedquery_toString">text:google tech*</str>
Why does this happen.
Thanks,
Prasi