Hi Raymond,

On 3/3/2009 at 12:04 PM, Raymond Balmès wrote:
> The range query only works on fields (using a string compare)... is
> there any reason why it is not possible on the words of the document.
> 
> The following query  [stringa TO stringb] would just give the list of
> documents which contains words between those two strings.

Can you give an example of what you want to do?

I suspect what you want is to look at a range of terms that appear in the 
collection (that is, across all documents) - if this is so, then you may be 
interested in IndexReader.terms(Term):

http://lucene.apache.org/java/2_4_0/api/org/apache/lucene/index/IndexReader.html#terms(org.apache.lucene.index.Term)

Steve


---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org

Reply via email to