jpountz commented on PR #12053:
URL: https://github.com/apache/lucene/pull/12053#issuecomment-1379974864
Thanks @rmuir !
--
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
jpountz merged PR #12053:
URL: https://github.com/apache/lucene/pull/12053
--
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.apa
jpountz commented on code in PR #12072:
URL: https://github.com/apache/lucene/pull/12072#discussion_r1067925752
##
lucene/core/src/java/org/apache/lucene/search/BooleanQuery.java:
##
@@ -203,9 +203,18 @@ BooleanQuery rewriteNoScoring(IndexSearcher indexSearcher)
throws IOExcept
jpountz opened a new pull request, #12079:
URL: https://github.com/apache/lucene/pull/12079
On the NYC taxis dataset on my local machine, switching from
`Arrays#compareUnsigned` to `ArrayUtil#getUnsignedComparator` yielded a 15%
speedup of BKD merging.
--
This is an automated message fro
romseygeek commented on issue #10458:
URL: https://github.com/apache/lucene/issues/10458#issuecomment-1380139574
Hi @Brain2000, yes please open a separate issue. If you could include a
reproduction then we can work out if it's an issue with TopFieldCollector
itself, or with how you're usin
javanna commented on PR #12072:
URL: https://github.com/apache/lucene/pull/12072#issuecomment-1380141646
@benwtrent could you add a changelog entry too?
--
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
iverase commented on PR #12079:
URL: https://github.com/apache/lucene/pull/12079#issuecomment-1380193686
I wonder if we should add `Arrays.compareUnsigned` to forbidden APIs to
force always to use the faster comparators.
--
This is an automated message from the Apache Git Service.
To resp
rmuir commented on code in PR #12054:
URL: https://github.com/apache/lucene/pull/12054#discussion_r1068060646
##
lucene/demo/src/java/org/apache/lucene/demo/IndexFiles.java:
##
@@ -234,8 +234,8 @@ void indexDoc(IndexWriter writer, Path file, long
lastModified) throws IOExcepti
jpountz commented on PR #12079:
URL: https://github.com/apache/lucene/pull/12079#issuecomment-1380286154
I remember thinking about it, and there are legitimate use-cases for
`Arrays#compareUnsigned` like `BytesRef#compareTo`. Another thing is that
`ArrayUtil#getUnsignedComparator` only help
jpountz commented on code in PR #12054:
URL: https://github.com/apache/lucene/pull/12054#discussion_r1068102375
##
lucene/demo/src/java/org/apache/lucene/demo/IndexFiles.java:
##
@@ -234,8 +234,8 @@ void indexDoc(IndexWriter writer, Path file, long
lastModified) throws IOExcept
rmuir commented on code in PR #12054:
URL: https://github.com/apache/lucene/pull/12054#discussion_r1068103957
##
lucene/demo/src/java/org/apache/lucene/demo/IndexFiles.java:
##
@@ -234,8 +234,8 @@ void indexDoc(IndexWriter writer, Path file, long
lastModified) throws IOExcepti
rmuir commented on code in PR #12054:
URL: https://github.com/apache/lucene/pull/12054#discussion_r1068105620
##
lucene/demo/src/java/org/apache/lucene/demo/IndexFiles.java:
##
@@ -234,8 +234,8 @@ void indexDoc(IndexWriter writer, Path file, long
lastModified) throws IOExcepti
mmatela opened a new issue, #12080:
URL: https://github.com/apache/lucene/issues/12080
### Description
In my example, the query is 'test polskie'.
I use MorfologikFilter for Polish stemming, it turns 'polskie' into 'polski'
+ 'polskie'.
I also use SynonymGraphFilter which turns
jpountz opened a new pull request, #12081:
URL: https://github.com/apache/lucene/pull/12081
In the case when an index is sorted on a low-cardinality field, or the index
sort order correlates with the order in which documents get ingested, we can
optimize `SortedDocIDMerger` by doing a singl
jpountz commented on PR #12081:
URL: https://github.com/apache/lucene/pull/12081#issuecomment-1380369577
Here are timings of the first doc value merges on the IndexTaxis benchmark
and a sorted dense index:
```
SM 0 [2023-01-12T13:17:47.581987785Z; Thread-0]: 564 ms to merge doc val
jpountz commented on code in PR #12054:
URL: https://github.com/apache/lucene/pull/12054#discussion_r1068141063
##
lucene/demo/src/java/org/apache/lucene/demo/IndexFiles.java:
##
@@ -234,8 +234,8 @@ void indexDoc(IndexWriter writer, Path file, long
lastModified) throws IOExcept
rmuir commented on code in PR #12054:
URL: https://github.com/apache/lucene/pull/12054#discussion_r1068144382
##
lucene/demo/src/java/org/apache/lucene/demo/IndexFiles.java:
##
@@ -234,8 +234,8 @@ void indexDoc(IndexWriter writer, Path file, long
lastModified) throws IOExcepti
rmuir commented on code in PR #12054:
URL: https://github.com/apache/lucene/pull/12054#discussion_r1068145212
##
lucene/demo/src/java/org/apache/lucene/demo/IndexFiles.java:
##
@@ -234,8 +234,8 @@ void indexDoc(IndexWriter writer, Path file, long
lastModified) throws IOExcepti
rmuir commented on code in PR #12054:
URL: https://github.com/apache/lucene/pull/12054#discussion_r1068154625
##
lucene/demo/src/java/org/apache/lucene/demo/IndexFiles.java:
##
@@ -234,8 +234,8 @@ void indexDoc(IndexWriter writer, Path file, long
lastModified) throws IOExcepti
rmuir commented on code in PR #12054:
URL: https://github.com/apache/lucene/pull/12054#discussion_r1068156278
##
lucene/demo/src/java/org/apache/lucene/demo/IndexFiles.java:
##
@@ -234,8 +234,8 @@ void indexDoc(IndexWriter writer, Path file, long
lastModified) throws IOExcepti
dantuzi commented on PR #12048:
URL: https://github.com/apache/lucene/pull/12048#issuecomment-1380490660
@msokolov I'm finalizing another PR that works with HnswGraph and, to create
the graph, I use the constants `DEFAULT_MAX_CONN` and `DEFAULT_BEAM_WIDTH`
already defined. So, in the future
jpountz commented on code in PR #12078:
URL: https://github.com/apache/lucene/pull/12078#discussion_r1068260998
##
lucene/core/src/java/org/apache/lucene/document/LongField.java:
##
@@ -108,8 +109,9 @@ public static Query newExactQuery(String field, long value)
{
*/
publ
javanna merged PR #12072:
URL: https://github.com/apache/lucene/pull/12072
--
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.apa
javanna closed issue #12069: Long rewrite times for deeply nested, non-scoring
Boolean queries
URL: https://github.com/apache/lucene/issues/12069
--
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
javanna commented on PR #12072:
URL: https://github.com/apache/lucene/pull/12072#issuecomment-1380596699
Thanks @benwtrent !
--
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.
jpountz merged PR #12079:
URL: https://github.com/apache/lucene/pull/12079
--
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.apa
jpountz merged PR #12081:
URL: https://github.com/apache/lucene/pull/12081
--
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.apa
jpountz commented on PR #11779:
URL: https://github.com/apache/lucene/pull/11779#issuecomment-1380774395
@danmuzi Should this be backported to branch_9x?
--
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
jpountz commented on PR #11807:
URL: https://github.com/apache/lucene/pull/11807#issuecomment-1380775336
@romseygeek Should it be backported to branch_9x?
--
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 t
Brain2000 opened a new issue, #12082:
URL: https://github.com/apache/lucene/issues/12082
### Description
It looks like there's a problem in the TopFieldCollector.java where it calls
"compareBottom" without calling "setBottom" first.
I believe this is an issue if getLeafComparer( )
jmazanec15 commented on code in PR #12050:
URL: https://github.com/apache/lucene/pull/12050#discussion_r1068562367
##
lucene/core/src/java/org/apache/lucene/util/hnsw/OnHeapHnswGraph.java:
##
@@ -94,36 +93,83 @@ public int size() {
}
/**
- * Add node on the given level
zhaih commented on code in PR #12050:
URL: https://github.com/apache/lucene/pull/12050#discussion_r1068747982
##
lucene/core/src/java/org/apache/lucene/util/hnsw/OnHeapHnswGraph.java:
##
@@ -94,36 +93,83 @@ public int size() {
}
/**
- * Add node on the given level
+
gsmiller commented on PR #12073:
URL: https://github.com/apache/lucene/pull/12073#issuecomment-1381092287
Moved this into "draft" state until I'm able to come back and figure out why
there was a benchmark improvement with this change, given the feedback that
`ReqExclBulkScorer` would be exp
LuXugang commented on code in PR #12078:
URL: https://github.com/apache/lucene/pull/12078#discussion_r1068923445
##
lucene/core/src/java/org/apache/lucene/document/LongField.java:
##
@@ -108,8 +109,9 @@ public static Query newExactQuery(String field, long value)
{
*/
pub
34 matches
Mail list logo