[PR] Simplify PForUtil construction and cleanup its code gen a little [lucene]

2024-10-19 Thread via GitHub
original-brownbear opened a new pull request, #13932: URL: https://github.com/apache/lucene/pull/13932 Generate cleaner code for PForUtil that has no dead parameters. Also: PForUtil instances always create their own `ForUtil`, so we can inline that into the field declaration. Also,

[I] FVH BaseFragmentsBuilder does not properly support colored pre/post tags [lucene]

2024-10-19 Thread via GitHub
MateuxLucax opened a new issue, #13933: URL: https://github.com/apache/lucene/issues/13933 ### Description Given the `BaseFragmentsBuilder` description: ```java ... /** * Base FragmentsBuilder implementation that supports colored pre/post tags and multivalued fields.

[PR] wip: add base test + minor tweaks [lucene]

2024-10-19 Thread via GitHub
MateuxLucax opened a new pull request, #13934: URL: https://github.com/apache/lucene/pull/13934 ### Description FVH BaseFragmentsBuilder does not properly support colored pre/post tags Details and discussion about the problem can be found in this issue: [FVH BaseFragmentsBuild

[PR] Misc cleanups to TopScoreDocCollector [lucene]

2024-10-19 Thread via GitHub
original-brownbear opened a new pull request, #13935: URL: https://github.com/apache/lucene/pull/13935 We can be a little less verbose for one big conditional and can optimize a few obvious spots in the logic (the hit comparison change is particularly helpful here I think). For wikimediu

[PR] Speedup PriorityQueue a little [lucene]

2024-10-19 Thread via GitHub
original-brownbear opened a new pull request, #13936: URL: https://github.com/apache/lucene/pull/13936 Saving some field accesses results in small but visible savings: ``` TaskQPS baseline StdDevQPS my_modified_version StdDevPct

Re: [PR] Use multi-select instead of a full sort for DynamicRange creation [lucene]

2024-10-19 Thread via GitHub
stefanvodita commented on code in PR #13914: URL: https://github.com/apache/lucene/pull/13914#discussion_r1802116373 ## lucene/facet/src/test/org/apache/lucene/facet/range/TestDynamicRangeUtil.java: ## @@ -80,24 +84,25 @@ public void testComputeDynamicNumericRangesWithOneLargeW

[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

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

Re: [PR] Convert BooleanClause class to record class [lucene]

2024-10-19 Thread via GitHub
uschindler commented on PR #13261: URL: https://github.com/apache/lucene/pull/13261#issuecomment-2423649656 Hi, This was planned to be backwards incompatible. There is a migration guide entry. Lucene generally revises APIs between major versions in incompatible ways. With Lucene