alessandrobenedetti commented on issue #11507:
URL: https://github.com/apache/lucene/issues/11507#issuecomment-1612704311
I am extremely curious, what should we consider a good performance to index
<3M docs?
I mean, I agree we should always try to improve things and aim for the
stars, bu
mikemccand commented on issue #12399:
URL: https://github.com/apache/lucene/issues/12399#issuecomment-1612734709
OK thanks for all the exciting discussion. I agree we should focus on only
the white-hot spots given how risking using Panama vector APIs is (trappy
performance pitfalls). Let'
mikemccand closed issue #12399: Would SIMD powered sort (on top of Panama) be
worth it?
URL: https://github.com/apache/lucene/issues/12399
--
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 specifi
mikemccand commented on issue #12399:
URL: https://github.com/apache/lucene/issues/12399#issuecomment-161294
> > Yeah, some of our custom sorts are because we want to sort one array,
but use the sort key from another parallel array. Unfortunately I don't think
(?) the JDK has existing A
easyice commented on code in PR #12381:
URL: https://github.com/apache/lucene/pull/12381#discussion_r1246447022
##
lucene/core/src/java/org/apache/lucene/index/DocsWithFieldSet.java:
##
@@ -75,4 +75,9 @@ public DocIdSetIterator iterator() {
public int cardinality() {
ret
alessandrobenedetti commented on issue #12313:
URL: https://github.com/apache/lucene/issues/12313#issuecomment-1612857327
I'll have to spend more brain time on the proposed block-join alternative,
but isn't it already "available" in that form? (with the consequent problems
and benefits of j
easyice commented on code in PR #12381:
URL: https://github.com/apache/lucene/pull/12381#discussion_r1246457143
##
lucene/core/src/java/org/apache/lucene/util/BitSet.java:
##
@@ -111,4 +111,70 @@ public void or(DocIdSetIterator iter) throws IOException {
set(doc);
}
easyice commented on PR #12381:
URL: https://github.com/apache/lucene/pull/12381#issuecomment-1612872730
@jpountz Thank you for comments, it's very helpful to me, the code has
updated.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to
benwtrent commented on issue #12313:
URL: https://github.com/apache/lucene/issues/12313#issuecomment-1612949170
> I'll have to spend more brain time on the proposed block-join alternative,
but isn't it already "available" in that form? (with the consequent problems
and benefits of joins?)
jpountz commented on code in PR #12381:
URL: https://github.com/apache/lucene/pull/12381#discussion_r1246499123
##
lucene/core/src/java/org/apache/lucene/index/NumericDocValuesWriter.java:
##
@@ -114,7 +121,12 @@ static DocValuesProducer getDocValuesProducer(
final NumericD
uschindler opened a new pull request, #12404:
URL: https://github.com/apache/lucene/pull/12404
I noticed on some other PR that some classes (especially `java.util.Stack`)
are used in Lucene code although they are really legacy from Java 1.0. The
problem with them is that they are synchroniz
uschindler commented on code in PR #12314:
URL: https://github.com/apache/lucene/pull/12314#discussion_r1246537955
##
lucene/core/src/java/org/apache/lucene/index/DocsWithVectorsSet.java:
##
@@ -0,0 +1,112 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or
jpountz commented on code in PR #12383:
URL: https://github.com/apache/lucene/pull/12383#discussion_r1246588872
##
lucene/core/src/test/org/apache/lucene/search/TestTermQuery.java:
##
@@ -164,6 +170,57 @@ public void testGetTermStates() throws Exception {
IOUtils.close(read
cbismuth commented on issue #11754:
URL: https://github.com/apache/lucene/issues/11754#issuecomment-1613312521
Can't reproduce against `main` branch, maybe not relevant anymore?
```
MAC-0320:lucene cbismuth$ ./gradlew -p lucene/core
-Ptests.seed=A0883CC08C1C22AB -Ptests.heapsize=25
LuXugang opened a new pull request, #12405:
URL: https://github.com/apache/lucene/pull/12405
### Description
Could we implement `TermOrdValLeafComparator`'s same logic that using
NumericDocValues to skip docs in `NumericLeafComparator` if we could not get a
iterator by bkd?
--
Thi
LuXugang commented on PR #12405:
URL: https://github.com/apache/lucene/pull/12405#issuecomment-1613330925
```java
public void test() throws IOException {
final Directory dir = newDirectory();
IndexWriterConfig config =
new IndexWriterConfig()
uschindler merged PR #12404:
URL: https://github.com/apache/lucene/pull/12404
--
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...@lucene.
almogtavor closed issue #12318: Async Usage of Lucene Monitor through a
Reactive Programming based application
URL: https://github.com/apache/lucene/issues/12318
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL abo
almogtavor commented on issue #12318:
URL: https://github.com/apache/lucene/issues/12318#issuecomment-1613462613
I see. Thanks alot for the help
--
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 th
almogtavor opened a new issue, #12406:
URL: https://github.com/apache/lucene/issues/12406
### Description
I use Lucene Monitor with regular `Document` objects and it works just fine.
The thing is that I'd like to match with Solr queries that I use in a nested
collection, but I've cou
sgup432 commented on code in PR #12383:
URL: https://github.com/apache/lucene/pull/12383#discussion_r1246890555
##
lucene/core/src/test/org/apache/lucene/search/TestTermQuery.java:
##
@@ -164,6 +170,57 @@ public void testGetTermStates() throws Exception {
IOUtils.close(read
sohami commented on PR #12374:
URL: https://github.com/apache/lucene/pull/12374#issuecomment-1613524919
> LGTM. Can you add a CHANGES entry under 9.8?
Added. I have also rebased the changes. Thanks @jpountz for your time and
guidance.
--
This is an automated message from the Apache
sgup432 commented on PR #12383:
URL: https://github.com/apache/lucene/pull/12383#issuecomment-1613526593
> I left minor suggestions but it looks good to me. Can you add a CHANGES
entry under 9.8?
@jpountz Sure. I have added a CHANGE entry.
--
This is an automated message from the A
easyice commented on code in PR #12381:
URL: https://github.com/apache/lucene/pull/12381#discussion_r1247414106
##
lucene/core/src/java/org/apache/lucene/index/NormValuesWriter.java:
##
@@ -76,7 +76,8 @@ public void flush(SegmentWriteState state, Sorter.DocMap
sortMap, NormsCon
easyice commented on code in PR #12381:
URL: https://github.com/apache/lucene/pull/12381#discussion_r1247416965
##
lucene/core/src/java/org/apache/lucene/index/NumericDocValuesWriter.java:
##
@@ -234,10 +246,41 @@ public long cost() {
static class NumericDVs {
private fi
25 matches
Mail list logo