RE: Indexing multiple numeric ranges

2024-11-05 Thread Siraj Haider
That’s great! I will look into it. Thanks a lot! -Siraj -Original Message- From: Adrien Grand Sent: Tuesday, November 5, 2024 11:19 AM To: java-user@lucene.apache.org Subject: Re: Indexing multiple numeric ranges Hello Siraj, You can do this by creating a Lucene document that has 3

Re: Indexing multiple numeric ranges

2024-11-05 Thread Adrien Grand
Hello Siraj, You can do this by creating a Lucene document that has 3 org.apache.lucene.document.IntRange fields in it, one for each of the ranges that you would like to index. Lucene will then match the document if any of the ranges matches. On Tue, Nov 5, 2024 at 5:16 PM Siraj Haider wrote: >