jpountz opened a new pull request #502:
URL: https://github.com/apache/lucene/pull/502
Currently EndiannessReverser(Data|Index)Input doesn't reverse the byte order
for
`readLongs` and `readFloats`. The reasoning is that these two method replaced
`readLELongs` and `readLEFloats`, so th
[
https://issues.apache.org/jira/browse/LUCENE-10233?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452234#comment-17452234
]
Adrien Grand commented on LUCENE-10233:
---
I opened a PR that changes the way we ha
zacharymorn commented on pull request #418:
URL: https://github.com/apache/lucene/pull/418#issuecomment-984393347
> Maybe we could have a SynonymImpactsSource or something like that as a
public @lucene.internal class in core that would provide this logic.
Ah yes using `@lucene.intern
zacharymorn commented on pull request #418:
URL: https://github.com/apache/lucene/pull/418#issuecomment-984406785
> Yes. I liked this approach because it felt like it should work relatively
well since the field with the highest weight should drive scores anyway, and
deciding about which cl
uschindler commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984411366
This task would also be useful later when we maintain the module during its
lifetime. I like the general idea.
I was thinking about some extension, so we can add some sour
[
https://issues.apache.org/jira/browse/LUCENE-10269?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ignacio Vera resolved LUCENE-10269.
---
Assignee: Ignacio Vera
Resolution: Workaround
Agreed, if we see there is traction or
iverase merged pull request #498:
URL: https://github.com/apache/lucene/pull/498
--
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..
[
https://issues.apache.org/jira/browse/LUCENE-10275?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452246#comment-17452246
]
ASF subversion and git services commented on LUCENE-10275:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10275?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452249#comment-17452249
]
ASF subversion and git services commented on LUCENE-10275:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ignacio Vera resolved LUCENE-10275.
---
Fix Version/s: 9.1
Assignee: Ignacio Vera
Resolution: Fixed
> Use interval
Ignacio Vera created LUCENE-10279:
-
Summary: Fix equal and hashCode in MultiRange query
Key: LUCENE-10279
URL: https://issues.apache.org/jira/browse/LUCENE-10279
Project: Lucene - Core
Issue
iverase opened a new pull request #503:
URL: https://github.com/apache/lucene/pull/503
This PR implements equals and hashcode for RangeClause which fixes the
current implementation of equals and has code for MultiRangeQuery.
--
This is an automated message from the Apache Git Service.
T
dweiss commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984461544
> There was invisible directory .gradle under dev-tools/missing-doclet/bin/.
I'm not sure when the directory was created.
Typically such directories are created by IDEs (intel
rmuir merged pull request #500:
URL: https://github.com/apache/lucene/pull/500
--
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...@
sonatype-lift[bot] commented on a change in pull request #418:
URL: https://github.com/apache/lucene/pull/418#discussion_r760988572
##
File path:
lucene/core/src/java/org/apache/lucene/search/ImpactsMergingUtils.java
##
@@ -0,0 +1,186 @@
+/*
+ * Licensed to the Apache Software
costin commented on pull request #453:
URL: https://github.com/apache/lucene/pull/453#issuecomment-984534767
Updated the benchmark to use JMH `blackhole` and tested it with/without the
blackhole flag enabled on the Java 17.0.1 compiler and got the following
results:
```
Benchmark
rmuir opened a new pull request #504:
URL: https://github.com/apache/lucene/pull/504
This test is forking and crashing JVMs, always runs over 10 seconds.
The other JVM-crashers are nightly, this one slipped through.
Sorry I don't have a good quick solution yet to make the test run
rmuir commented on a change in pull request #503:
URL: https://github.com/apache/lucene/pull/503#discussion_r761010365
##
File path:
lucene/sandbox/src/test/org/apache/lucene/sandbox/search/TestMultiRangeQueries.java
##
@@ -649,4 +649,109 @@ public void testToString() {
rmuir opened a new pull request #505:
URL: https://github.com/apache/lucene/pull/505
This test runs across every IndexOptions, indexing hundreds of fields.
It is slow for some implementations (e.g. SimpleText):
```
The slowest tests (exceeding 500 ms) during this run:
8.31
rmuir opened a new pull request #506:
URL: https://github.com/apache/lucene/pull/506
this test currently indexes up to 600 docs for each thread.
```
The slowest tests (exceeding 500 ms) during this run:
7.88s TestIndexWriter.testMaxCompletedSequenceNumber (:lucene:core)
``
iverase commented on a change in pull request #503:
URL: https://github.com/apache/lucene/pull/503#discussion_r761036341
##
File path:
lucene/sandbox/src/test/org/apache/lucene/sandbox/search/TestMultiRangeQueries.java
##
@@ -649,4 +649,109 @@ public void testToString() {
sonatype-lift[bot] commented on a change in pull request #503:
URL: https://github.com/apache/lucene/pull/503#discussion_r761044643
##
File path:
lucene/sandbox/src/java/org/apache/lucene/sandbox/search/MultiRangeQuery.java
##
@@ -56,6 +56,26 @@ public RangeClause(byte[] lower
rmuir commented on pull request #502:
URL: https://github.com/apache/lucene/pull/502#issuecomment-984583479
yeah I think its the least-confusing solution. The number of old call sites
that were calling `readLELongs` isn't going to increase, so going forwards, the
back-compat will hassle us
rmuir commented on a change in pull request #503:
URL: https://github.com/apache/lucene/pull/503#discussion_r761047499
##
File path:
lucene/sandbox/src/java/org/apache/lucene/sandbox/search/MultiRangeQuery.java
##
@@ -56,6 +56,26 @@ public RangeClause(byte[] lowerValue, byte[]
iverase merged pull request #503:
URL: https://github.com/apache/lucene/pull/503
--
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..
[
https://issues.apache.org/jira/browse/LUCENE-10279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452380#comment-17452380
]
ASF subversion and git services commented on LUCENE-10279:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10279?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ignacio Vera resolved LUCENE-10279.
---
Fix Version/s: 9.1
Assignee: Ignacio Vera
Resolution: Fixed
> Fix equal and
[
https://issues.apache.org/jira/browse/LUCENE-10279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452385#comment-17452385
]
ASF subversion and git services commented on LUCENE-10279:
--
Co
iverase opened a new pull request #507:
URL: https://github.com/apache/lucene/pull/507
Follow up of https://github.com/apache/lucene/pull/503. Adding an entry in
CHANGES.txt and making RangeClause final.
--
This is an automated message from the Apache Git Service.
To respond to the messa
iverase commented on a change in pull request #503:
URL: https://github.com/apache/lucene/pull/503#discussion_r761059134
##
File path:
lucene/sandbox/src/java/org/apache/lucene/sandbox/search/MultiRangeQuery.java
##
@@ -56,6 +56,26 @@ public RangeClause(byte[] lowerValue, byte
jpountz merged pull request #502:
URL: https://github.com/apache/lucene/pull/502
--
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..
iverase commented on pull request #502:
URL: https://github.com/apache/lucene/pull/502#issuecomment-984616712
Late to the party but I agree that this makes it more consistent.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub
mocobeta commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984635576
Could I go one step further to make life easier (for me...)
https://github.com/dweiss/lucene/pull/4
--
This is an automated message from the Apache Git Service.
To respond to
sonatype-lift[bot] commented on a change in pull request #453:
URL: https://github.com/apache/lucene/pull/453#discussion_r761116584
##
File path:
lucene/core/src/java/org/apache/lucene/util/packed/Packed64VHLongAndByte.java
##
@@ -0,0 +1,154 @@
+/*
+ * Licensed to the Apache S
[
https://issues.apache.org/jira/browse/LUCENE-10233?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452456#comment-17452456
]
ASF subversion and git services commented on LUCENE-10233:
--
Co
jpountz merged pull request #501:
URL: https://github.com/apache/lucene/pull/501
--
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..
[
https://issues.apache.org/jira/browse/LUCENE-10278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452457#comment-17452457
]
ASF subversion and git services commented on LUCENE-10278:
--
Co
tiurin opened a new pull request #508:
URL: https://github.com/apache/lucene/pull/508
The word "quinientos" is repeated 2 times in the `invariantsList` constant.
Removing the extra entry.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log o
tiurin commented on pull request #508:
URL: https://github.com/apache/lucene/pull/508#issuecomment-984725473
@xaviersanchez FYI.
--
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 comm
rmuir commented on a change in pull request #508:
URL: https://github.com/apache/lucene/pull/508#discussion_r761208470
##
File path:
lucene/analysis/common/src/java/org/apache/lucene/analysis/es/SpanishPluralStemmer.java
##
@@ -119,7 +119,6 @@
"portamantas",
[
https://issues.apache.org/jira/browse/LUCENE-10278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452467#comment-17452467
]
ASF subversion and git services commented on LUCENE-10278:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10233?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452466#comment-17452466
]
ASF subversion and git services commented on LUCENE-10233:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10278?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Adrien Grand resolved LUCENE-10278.
---
Fix Version/s: 9.1
Resolution: Fixed
> BKD TestDocIdsWriter.testRandom failure
> ---
xaviersanchez commented on a change in pull request #508:
URL: https://github.com/apache/lucene/pull/508#discussion_r761211829
##
File path:
lucene/analysis/common/src/java/org/apache/lucene/analysis/es/SpanishPluralStemmer.java
##
@@ -119,7 +119,6 @@
"portamantas",
jpountz commented on pull request #499:
URL: https://github.com/apache/lucene/pull/499#issuecomment-984743048
@iverase I think you are the right person to review this one?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and u
iverase commented on a change in pull request #499:
URL: https://github.com/apache/lucene/pull/499#discussion_r761227803
##
File path: lucene/core/src/java/org/apache/lucene/util/FixedBitSet.java
##
@@ -351,16 +351,38 @@ private void and(final long[] otherArr, final int
otherN
jpountz commented on a change in pull request #486:
URL: https://github.com/apache/lucene/pull/486#discussion_r761233070
##
File path:
lucene/core/src/java/org/apache/lucene/index/ExitableDirectoryReader.java
##
@@ -505,80 +504,29 @@ public long size() {
}
@Overrid
iverase commented on a change in pull request #486:
URL: https://github.com/apache/lucene/pull/486#discussion_r761244824
##
File path: lucene/core/src/java/org/apache/lucene/index/PointValues.java
##
@@ -361,14 +405,29 @@ private void intersect(IntersectVisitor visitor,
PointT
thelabdude opened a new pull request #2620:
URL: https://github.com/apache/lucene-solr/pull/2620
backport of https://github.com/apache/solr/pull/437
--
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
thelabdude merged pull request #2620:
URL: https://github.com/apache/lucene-solr/pull/2620
--
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-
uschindler commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984774533
Hi @mocobeta: Please remove all "uses" statements in all modules, except in
"org.apache.lucene.core" module. I have seen that you added it to the scaffold
tool.
"uses" me
uschindler edited a comment on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984774533
Hi @mocobeta: Please remove all "uses" statements in all modules, except in
"org.apache.lucene.core" module. I have seen that you added it to the scaffold
tool.
"u
iverase commented on a change in pull request #486:
URL: https://github.com/apache/lucene/pull/486#discussion_r761250414
##
File path: lucene/core/src/java/org/apache/lucene/index/PointValues.java
##
@@ -361,14 +405,29 @@ private void intersect(IntersectVisitor visitor,
PointT
iverase commented on a change in pull request #486:
URL: https://github.com/apache/lucene/pull/486#discussion_r761251202
##
File path: lucene/core/src/java/org/apache/lucene/index/PointValues.java
##
@@ -269,22 +270,33 @@ protected PointValues() {}
long size();
/**
iverase commented on a change in pull request #486:
URL: https://github.com/apache/lucene/pull/486#discussion_r761251552
##
File path: lucene/core/src/java/org/apache/lucene/index/PointValues.java
##
@@ -323,10 +355,18 @@ default void grow(int count) {}
*/
public final v
mocobeta commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984777325
@uschindler ah right, sure. I will remove all uses statements.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and
iverase commented on a change in pull request #486:
URL: https://github.com/apache/lucene/pull/486#discussion_r761252070
##
File path:
lucene/core/src/java/org/apache/lucene/index/ExitableDirectoryReader.java
##
@@ -505,80 +504,29 @@ public long size() {
}
@Overrid
danmuzi commented on pull request #496:
URL: https://github.com/apache/lucene/pull/496#issuecomment-984779348
I saw this PR a little late.
Thank you for reflecting my patch! @mocobeta
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on
uschindler commented on a change in pull request #470:
URL: https://github.com/apache/lucene/pull/470#discussion_r761255741
##
File path: lucene/core/src/java-module/module-info.java
##
@@ -0,0 +1,70 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
mocobeta commented on a change in pull request #470:
URL: https://github.com/apache/lucene/pull/470#discussion_r761263744
##
File path: gradle/java/modules.gradle
##
@@ -0,0 +1,169 @@
+import java.util.jar.JarFile
+import java.util.stream.Collectors
+
+/*
+ * Licensed to the Ap
uschindler commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984789671
I checked all usages:
NamedSPILoader:
https://github.com/apache/lucene/search?q=%22new+NamedSPILoader%22:
- KnnVectorsFormat
- SortFieldProvider
- DocValuesFormat
xaviersanchez commented on a change in pull request #508:
URL: https://github.com/apache/lucene/pull/508#discussion_r761267104
##
File path:
lucene/analysis/common/src/java/org/apache/lucene/analysis/es/SpanishPluralStemmer.java
##
@@ -119,7 +119,6 @@
"portamantas",
xaviersanchez commented on a change in pull request #508:
URL: https://github.com/apache/lucene/pull/508#discussion_r761267104
##
File path:
lucene/analysis/common/src/java/org/apache/lucene/analysis/es/SpanishPluralStemmer.java
##
@@ -119,7 +119,6 @@
"portamantas",
uschindler edited a comment on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984789671
I checked all usages:
NamedSPILoader:
https://github.com/apache/lucene/search?q=%22new+NamedSPILoader%22:
- KnnVectorsFormat
- SortFieldProvider
- DocValue
uschindler commented on a change in pull request #470:
URL: https://github.com/apache/lucene/pull/470#discussion_r761290807
##
File path: gradle/java/modules.gradle
##
@@ -0,0 +1,169 @@
+import java.util.jar.JarFile
+import java.util.stream.Collectors
+
+/*
+ * Licensed to the
uschindler commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984816801
I fixed again a windows problem. In Gradle never ever use regular
expressions on files and filenames. There's include/exclude on
PatternFilterable for it (known from Ant).
uschindler commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984823396
I would leave the utility tasks in the project. They are useful, if you want
to spawn a new module. We may also use them to add some checks (like we can
verify using this that t
gf2121 commented on pull request #499:
URL: https://github.com/apache/lucene/pull/499#issuecomment-984831680
@iverase Thanks a lot for the great advices! Ready for another look :)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to Git
ChrisHegarty commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984843040
This is great progress, well done to all involved. I have a
work-in-progress crummy prototype with the core of [Elasticsearch
modularized][1] (it still needs a lot of cleanup
uschindler commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984864748
> This is great progress, well done to all involved. I have a
work-in-progress crummy prototype with the core of [Elasticsearch
modularized](https://github.com/elastic/elasticse
sonatype-lift[bot] commented on a change in pull request #486:
URL: https://github.com/apache/lucene/pull/486#discussion_r761358324
##
File path:
lucene/test-framework/src/java/org/apache/lucene/index/BasePointsFormatTestCase.java
##
@@ -1070,29 +1071,13 @@ private void assert
[
https://issues.apache.org/jira/browse/LUCENE-10267?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Dawid Weiss resolved LUCENE-10267.
--
Resolution: Fixed
> Gradle does not write module version attribute for modules with zero
> d
thelabdude opened a new pull request #2621:
URL: https://github.com/apache/lucene-solr/pull/2621
backport of https://github.com/apache/solr/pull/438
--
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
rmuir commented on pull request #508:
URL: https://github.com/apache/lucene/pull/508#issuecomment-984921948
Thank you @tiurin @xaviersanchez
--
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
rmuir merged pull request #508:
URL: https://github.com/apache/lucene/pull/508
--
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...@
thelabdude merged pull request #2621:
URL: https://github.com/apache/lucene-solr/pull/2621
--
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-
[
https://issues.apache.org/jira/browse/LUCENE-10255?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452578#comment-17452578
]
Dawid Weiss commented on LUCENE-10255:
--
I've added an automatic check verifying th
[
https://issues.apache.org/jira/browse/LUCENE-10277?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Dawid Weiss resolved LUCENE-10277.
--
Resolution: Fixed
I know other things can be checked in a similar vain (packages). I'm closin
[
https://issues.apache.org/jira/browse/LUCENE-10255?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Dawid Weiss updated LUCENE-10255:
-
Description:
I've experimented a bit trying to move the code to the JMS. It is _surprisingly
d
dweiss commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-984949140
@uschindler @mocobeta @rmuir - this is how I think we should enforce
consistency until a way is found to maybe generate one from the other (my
understanding at the moment is that su
janhoy opened a new pull request #2622:
URL: https://github.com/apache/lucene-solr/pull/2622
https://issues.apache.org/jira/browse/SOLR-15826 backport from main
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
uschindler commented on a change in pull request #470:
URL: https://github.com/apache/lucene/pull/470#discussion_r761470809
##
File path:
lucene/distribution-tests/src/test/org/apache/lucene/distribution/TestModularLayer.java
##
@@ -108,4 +140,76 @@ public void testAllModulesH
uschindler commented on a change in pull request #470:
URL: https://github.com/apache/lucene/pull/470#discussion_r761473889
##
File path:
lucene/distribution-tests/src/test/org/apache/lucene/distribution/TestModularLayer.java
##
@@ -108,4 +140,76 @@ public void testAllModulesH
zhaih commented on pull request #225:
URL: https://github.com/apache/lucene/pull/225#issuecomment-985053769
@rmuir I've done the benchmark! (Sorry for the delay): and result looks
plain (which is good for this change)
```
TaskQPS base StdDevQPS cand
zhaih commented on a change in pull request #225:
URL: https://github.com/apache/lucene/pull/225#discussion_r761533567
##
File path: lucene/CHANGES.txt
##
@@ -7,6 +7,8 @@ http://s.apache.org/luceneversions
New Features
+* LUCENE-10010 Introduce NFARunAutomaton to run NFA d
sonatype-lift[bot] commented on a change in pull request #225:
URL: https://github.com/apache/lucene/pull/225#discussion_r761596350
##
File path:
lucene/core/src/java/org/apache/lucene/util/automaton/NFARunAutomaton.java
##
@@ -0,0 +1,429 @@
+/*
+ * Licensed to the Apache Soft
mocobeta commented on pull request #470:
URL: https://github.com/apache/lucene/pull/470#issuecomment-985198581
Tried to add the module descriptors to other analysis subprojects. Except
for morfologik module, it seems to work.
https://github.com/dweiss/lucene/pull/6
--
This is an autom
zacharymorn commented on pull request #418:
URL: https://github.com/apache/lucene/pull/418#issuecomment-985229215
I just added two logging statements in `ImpactsDISI` to print out `upTo` and
max score comparison to examine the docs pruning results:
```
diff --git a/lucene/core/src
iverase merged pull request #507:
URL: https://github.com/apache/lucene/pull/507
--
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..
[
https://issues.apache.org/jira/browse/LUCENE-10279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452774#comment-17452774
]
ASF subversion and git services commented on LUCENE-10279:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452773#comment-17452773
]
ASF subversion and git services commented on LUCENE-10279:
--
Co
Feng Guo created LUCENE-10280:
-
Summary: Store BKD blocks with continuous ids more efficiently
Key: LUCENE-10280
URL: https://issues.apache.org/jira/browse/LUCENE-10280
Project: Lucene - Core
Iss
[
https://issues.apache.org/jira/browse/LUCENE-10280?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Feng Guo updated LUCENE-10280:
--
Description: For scenes that index is sorted on the field, blocks with
continuous ids may be a common
dweiss commented on a change in pull request #470:
URL: https://github.com/apache/lucene/pull/470#discussion_r761687444
##
File path:
lucene/distribution-tests/src/test/org/apache/lucene/distribution/TestModularLayer.java
##
@@ -108,4 +140,76 @@ public void testAllModulesHaveE
dweiss commented on a change in pull request #470:
URL: https://github.com/apache/lucene/pull/470#discussion_r761687631
##
File path:
lucene/distribution-tests/src/test/org/apache/lucene/distribution/TestModularLayer.java
##
@@ -108,4 +140,76 @@ public void testAllModulesHaveE
mdmarshmallow opened a new pull request #509:
URL: https://github.com/apache/lucene/pull/509
# Description
Currently, SSDV faceting doesn't support hierarchical labels with a
hierarchy of greater than 2. This change enables hierarchical labels of
arbitrary length with SS
[
https://issues.apache.org/jira/browse/LUCENE-10250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17452783#comment-17452783
]
Marc D'Mello commented on LUCENE-10250:
---
Made a PR here for this issue: https://g
Lu Xugang created LUCENE-10281:
--
Summary: Error condition used to judge whether hits are sparse in
StringValueFacetCounts
Key: LUCENE-10281
URL: https://issues.apache.org/jira/browse/LUCENE-10281
Project
gf2121 commented on a change in pull request #438:
URL: https://github.com/apache/lucene/pull/438#discussion_r761691414
##
File path: lucene/core/src/java/org/apache/lucene/util/bkd/DocIdsWriter.java
##
@@ -18,23 +18,32 @@
import java.io.IOException;
import org.apache.lucen
[
https://issues.apache.org/jira/browse/LUCENE-10280?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Feng Guo updated LUCENE-10280:
--
Description:
For scenes that index is sorted on the field, blocks with continuous ids may be
a commo
1 - 100 of 105 matches
Mail list logo