Re: [PR] Speedup OrderIntervalsSource some more [lucene]

2024-10-22 Thread via GitHub
jpountz commented on PR #13937: URL: https://github.com/apache/lucene/pull/13937#issuecomment-2429119642 There is indeed a small speedup to intervals with a low p-value. https://benchmarks.mikemccandless.com/IntervalsOrdered.html I pushed an annotation. -- This is an automated message fr

Re: [PR] Speedup OrderIntervalsSource some more [lucene]

2024-10-21 Thread via GitHub
original-brownbear commented on PR #13937: URL: https://github.com/apache/lucene/pull/13937#issuecomment-2426878304 Thanks Adrien! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific com

Re: [PR] Speedup OrderIntervalsSource some more [lucene]

2024-10-21 Thread via GitHub
original-brownbear merged PR #13937: URL: https://github.com/apache/lucene/pull/13937 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...

Re: [PR] Speedup OrderIntervalsSource some more [lucene]

2024-10-21 Thread via GitHub
original-brownbear commented on code in PR #13937: URL: https://github.com/apache/lucene/pull/13937#discussion_r1808845516 ## lucene/queries/src/java/org/apache/lucene/queries/intervals/OrderedIntervalsSource.java: ## @@ -161,8 +163,8 @@ public int nextInterval() throws IOExcept

Re: [PR] Speedup OrderIntervalsSource some more [lucene]

2024-10-20 Thread via GitHub
jpountz commented on code in PR #13937: URL: https://github.com/apache/lucene/pull/13937#discussion_r1808166752 ## lucene/queries/src/java/org/apache/lucene/queries/intervals/OrderedIntervalsSource.java: ## @@ -161,8 +163,8 @@ public int nextInterval() throws IOException {

Re: [PR] Speedup OrderIntervalsSource some more [lucene]

2024-10-19 Thread via GitHub
original-brownbear commented on code in PR #13937: URL: https://github.com/apache/lucene/pull/13937#discussion_r1807578084 ## lucene/queries/src/java/org/apache/lucene/queries/intervals/OrderedIntervalsSource.java: ## @@ -127,29 +127,31 @@ public int nextInterval() throws IOExce

[PR] Speedup OrderIntervalsSource some more [lucene]

2024-10-19 Thread via GitHub
original-brownbear opened a new pull request, #13937: URL: https://github.com/apache/lucene/pull/13937 Follow-up to #13871, getting another speedup from relatively trivial changes: * avoid redundant `end()` call by directly storing the end value for sub-iterator that we don't use for