RE: Solr Query Language

2007-04-16 Thread Daniel Pitts
It looks like (from the exception) that you missed a space. Perhaps your actual query was constructed like: String query = "width:[" + lowWidth + " TO" + highWidth +"]"; Where you *wanted* String query = "width:[" + lowWidth + " TO " + highWidth +"]"; > -Original Message- > From: Jack L [

Re: Solr Query Language

2007-04-15 Thread Bertrand Delacretaz
On 4/16/07, Jack L <[EMAIL PROTECTED]> wrote: Is the lucene query syntax available in solr? ... The syntax depends on the request handler used, if you're using the standard one the docs are at http://wiki.apache.org/solr/StandardRequestHandler -Bertrand