RE: AW: Leading wildcards

2007-04-28 Thread Jery Cook
Just cant figure this out, ...or do I have to do this programmatically? Have a facet, and field in an document called estimatedRepairs, it is declared in the schema.xml as field name=estimatedRepairs type=sfloat indexed=true stored=true multiValued=true/ I execute a query with the below

Re: AW: Leading wildcards

2007-04-27 Thread Paul Fryer
[EMAIL PROTECTED] Reply-To: solr-user@lucene.apache.org To: solr-user@lucene.apache.org Subject: Re: AW: Leading wildcards Date: Fri, 27 Apr 2007 16:25:37 -0700 (PDT) : when we do a search on a nonexisting field, we get a SolrException: : undefined field : (this was for query nonfield:test

Re: AW: Leading wildcards

2007-04-23 Thread Maarten . De . Vilder
AW: Leading wildcards Hi there, Solr does not support leading wildcards, because it uses Lucene's standard QueryParser class without changing the defaults. You can easily change this by inserting the line parser.setAllowLeadingWildcards(true); in QueryParsing.java line 92. (This is after

Re: AW: Leading wildcards

2007-04-20 Thread Maarten . De . Vilder
@lucene.apache.org cc Subject AW: Leading wildcards Hi there, Solr does not support leading wildcards, because it uses Lucene's standard QueryParser class without changing the defaults. You can easily change this by inserting the line parser.setAllowLeadingWildcards(true

Re: AW: Leading wildcards

2007-04-20 Thread Michael Kimsal
Burkamp, Christian [EMAIL PROTECTED] 19/04/2007 12:37 Please respond to solr-user@lucene.apache.org To solr-user@lucene.apache.org cc Subject AW: Leading wildcards Hi there, Solr does not support leading wildcards, because it uses Lucene's standard QueryParser class without changing