> From: Robert J. Lebowitz [mailto:[EMAIL PROTECTED]] > > > - added RangeQuery, for term-range searching > > Is this based on the code I submitted a while back???
No, although it is similar. Scott Ganyo implemented this. It is
implemented by the class org.apache.lucene.search.RangeQuery.
Scott also extended the query parser to incorporate range queries as
follows:
inclusive range = field:[lowerTerm-upperTerm]
exclusive range = field:{lowerTerm-upperTerm}
Doug
