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 [
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