Also be aware that some analysis steps may not be performed on wildcards. The filter has to be MultTermAware. See:
https://wiki.apache.org/solr/MultitermQueryAnalysis and http://searchhub.org/2011/11/29/whats-with-lowercasing-wildcard-multiterm-queries-in-solr/ Best, Erick On Fri, Sep 13, 2013 at 12:12 PM, Jack Krupansky <j...@basetechnology.com>wrote: > 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 >