I'm using Lucene to index nodes in a Neo4j database and I'm using Lucene query strings to perform queries. Everything behaves as expected when I perform range queries that are either exclusive or inclusive on both ends:

Index.query("value:[1 TO 10]");  // Inclusive range query
Index.query("value:{1 TO 10}");  // Exclusive range query

However, it doesn't seem to work if I specify one end of the range query to be exclusive and the other to be inclusive, for example:

Index.query("value:[1 TO 10}");

I understand that it is possible to perform this query using the QueryContext.numericRange() method, for example:

Index.query(QueryContext.numericRange("value", 1, 10, true, false));

Why is it not possible to do the same using Lucene query syntax? Am I misunderstanding the syntax or doing something incorrectly code-wise?

References:
http://docs.neo4j.org/chunked/stable/indexing-lucene-extras.html
http://lucene.apache.org/java/3_5_0/queryparsersyntax.html

link|improve this question
feedback

1 Answer

in order for numeric ranges to work, you have to index your data with custom parsers etc, since lucene did not anticipate this usecase, see http://wiki.apache.org/lucene-java/SearchNumericalFields and the related issues. I think you can do it better in Lucene 3.5 which is part of Neo4j 1.6.GA though, but you will have to pull some tricks here :)

link|improve this answer
you have to register custom parsers for the fields that should result in NumericRangeQueries, perhaps Peter can publish the test-code we created for that. – Michael Hunger Feb 4 at 23:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.