Re: Anyone familiar (or use) MultiRangeQuery?

2021-11-25 Thread Adrien Grand
I think Greg is right and this query is supposed to be a specialization for a disjunction of multiple range queries. It helps because you need to visit the index of the BKD tree and build a bit set once for the entire disjunction instead of once per range. I suspect that the fact that it doesn't w

Re: [VOTE] Release Lucene 9.0.0 RC2

2021-11-25 Thread Adrien Grand
Sorry Tomoko I'm just seeing your message now. Please go ahead and backport to branch_9_0. On Thu, Nov 25, 2021 at 12:41 PM Tomoko Uchida wrote: > > On LUCENE-10255, there's a reference to issues with the Luke Analysis > > UI, is it something we can fix as well for RC3? > > Rather than making th

Re: Warnings from gradle rat task

2021-11-25 Thread Dawid Weiss
I am 99.9% sure this warning comes from ant (we use ant's rat task) somewhere - not gradle... It looks like loading rat's task defs overrides ant's built-in javadoc for some reason - you can see it if you modify rat-sources.gradle: def generateReport(File reportFile) { // Set up ant ra

Warnings from gradle rat task

2021-11-25 Thread Alan Woodward
Hi all, When running `./gradlew check` against the latest master I get a whole bunch of output messages like this: > Task :lucene:analysis:smartcn:rat Trying to override old definition of task javadoc > Task :lucene:analysis:stempel:rat Trying to override old definition of task javadoc > Task

Re: [VOTE] Release Lucene 9.0.0 RC2

2021-11-25 Thread Tomoko Uchida
> On LUCENE-10255, there's a reference to issues with the Luke Analysis > UI, is it something we can fix as well for RC3? Rather than making the old UI work with the module system, I would remove it (at least for now). https://github.com/apache/lucene/pull/475 Could I backport it to branch_9_0?