[
https://issues.apache.org/jira/browse/LUCENE-10315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=1751#comment-1751
]
Ignacio Vera commented on LUCENE-10315:
---
I agree that someone would expect such a
jianping weng created LUCENE-10496:
--
Summary: disable unnecessary attempts to evaluate skipping doc if
index sort and search sort are in opposite direction
Key: LUCENE-10496
URL: https://issues.apache.org/jira/br
wjp719 opened a new pull request, #780:
URL: https://github.com/apache/lucene/pull/780
users ofter write doc with indexSorting in one direction(asc or desc) , but
need to search top docs both in two direction (asc and desc)
if index sort and search sort are in opposite direction,
Num
mocobeta opened a new pull request, #781:
URL: https://github.com/apache/lucene/pull/781
Maybe good to add a request to open a Jira before opening a PR? I'm not sure
if there is a policy about it, I noted it's "optional" but required when the
contribution should be mentioned in CHANGES.
-
mocobeta commented on PR #781:
URL: https://github.com/apache/lucene/pull/781#issuecomment-1087345138
We could simply add the PR number in the CHANGES and I think it'd be
developer-friednly, I don't think this works at this moment.
--
This is an automated message from the Apache Git Servi
[
https://issues.apache.org/jira/browse/LUCENE-10184?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17516722#comment-17516722
]
Tomoko Uchida commented on LUCENE-10184:
I opened a follow-up PR to optionally
Tomoko Uchida created LUCENE-10497:
--
Summary: Unify "Token" interface in Kuromoji and Nori
Key: LUCENE-10497
URL: https://issues.apache.org/jira/browse/LUCENE-10497
Project: Lucene - Core
Is
[
https://issues.apache.org/jira/browse/LUCENE-10496?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
jianping weng updated LUCENE-10496:
---
Summary: avoid unnecessary attempts to evaluate skipping doc if index sort
and search sort
mocobeta commented on PR #781:
URL: https://github.com/apache/lucene/pull/781#issuecomment-1087420165
@dweiss Thank you for confirming.
--
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
mocobeta merged PR #781:
URL: https://github.com/apache/lucene/pull/781
--
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.apache
[
https://issues.apache.org/jira/browse/LUCENE-10184?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17516751#comment-17516751
]
ASF subversion and git services commented on LUCENE-10184:
--
Co
Luca Cavanna created LUCENE-10498:
-
Summary: Optimize TopField and TopScoreDoc collector by only
counting hits when necessary
Key: LUCENE-10498
URL: https://issues.apache.org/jira/browse/LUCENE-10498
[
https://issues.apache.org/jira/browse/LUCENE-10486?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17516779#comment-17516779
]
Luca Cavanna commented on LUCENE-10486:
---
I opened LUCENE-10498 for not counting u
[
https://issues.apache.org/jira/browse/LUCENE-10315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17516794#comment-17516794
]
Adrien Grand commented on LUCENE-10315:
---
Thanks for sharing the benchmark. I ran
[
https://issues.apache.org/jira/browse/LUCENE-10315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17516857#comment-17516857
]
Ignacio Vera commented on LUCENE-10315:
---
Yes, that is strange but I can reproduce
[
https://issues.apache.org/jira/browse/LUCENE-10315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17516863#comment-17516863
]
Adrien Grand commented on LUCENE-10315:
---
Since there is a bigger difference on aa
javanna opened a new pull request, #782:
URL: https://github.com/apache/lucene/pull/782
This commit introduces a no-op implementation of HitsThresholdChecker that
does no counting, to be used when early termination is disabled. This is
automatically used when creating a TopFieldCollector or
jpountz merged PR #782:
URL: https://github.com/apache/lucene/pull/782
--
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.apache.
[
https://issues.apache.org/jira/browse/LUCENE-10498?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17516917#comment-17516917
]
ASF subversion and git services commented on LUCENE-10498:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10498?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Adrien Grand resolved LUCENE-10498.
---
Fix Version/s: 9.2
Resolution: Fixed
> Optimize TopField and TopScoreDoc collector b
[
https://issues.apache.org/jira/browse/LUCENE-10498?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17516918#comment-17516918
]
ASF subversion and git services commented on LUCENE-10498:
--
Co
cpoerschke opened a new pull request, #64:
URL: https://github.com/apache/lucene-site/pull/64
reference: https://infra.apache.org/git-primer.html#repocheckout
--
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
jpountz commented on code in PR #780:
URL: https://github.com/apache/lucene/pull/780#discussion_r841911556
##
lucene/core/src/java/org/apache/lucene/search/comparators/NumericComparator.java:
##
@@ -94,6 +95,7 @@ public void disableSkipping() {
private long iteratorCost;
jpountz commented on PR #767:
URL: https://github.com/apache/lucene/pull/767#issuecomment-1087747701
+1 to discuss improvements to this query separately. For this specific one,
I have a bias towards not relying on implementation details of codecs, I'm
hoping that docs of vectors move to dis
jpountz commented on code in PR #767:
URL: https://github.com/apache/lucene/pull/767#discussion_r841919931
##
lucene/core/src/test/org/apache/lucene/search/TestFieldExistsQuery.java:
##
@@ -0,0 +1,717 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
nknize commented on PR #749:
URL: https://github.com/apache/lucene/pull/749#issuecomment-1087817810
> > In my opinion, long-term this IndexSortSortedNumericDocValuesRangeQuery
should no longer be exposed to users. Lucene would have long/int/double/float
fields ([LUCENE-10162](https://issues
[
https://issues.apache.org/jira/browse/LUCENE-10315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17516967#comment-17516967
]
Ignacio Vera commented on LUCENE-10315:
---
I wonder: https://bugs.openjdk.java.net/
jtibshirani commented on PR #749:
URL: https://github.com/apache/lucene/pull/749#issuecomment-1087829315
@nknize I'm sorry about that, I missed that you wanted to discuss this
before merging. I see this fix as a self-contained improvement -- previously we
silently accepted but then failed o
wjp719 commented on code in PR #780:
URL: https://github.com/apache/lucene/pull/780#discussion_r841995188
##
lucene/core/src/java/org/apache/lucene/search/comparators/NumericComparator.java:
##
@@ -94,6 +95,7 @@ public void disableSkipping() {
private long iteratorCost;
nknize commented on PR #749:
URL: https://github.com/apache/lucene/pull/749#issuecomment-1087891213
> I missed that you wanted to discuss this before merging.
Not a problem!
> Could you explain the open question you'd like to resolve?
From my comment above: `"I'm tryi
jtibshirani commented on PR #749:
URL: https://github.com/apache/lucene/pull/749#issuecomment-1087903018
Sounds good, I'll follow up on LUCENE-10162.
--
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
jtibshirani merged PR #749:
URL: https://github.com/apache/lucene/pull/749
--
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
[
https://issues.apache.org/jira/browse/LUCENE-10466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517047#comment-17517047
]
ASF subversion and git services commented on LUCENE-10466:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517048#comment-17517048
]
ASF subversion and git services commented on LUCENE-10466:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517057#comment-17517057
]
ASF subversion and git services commented on LUCENE-10466:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10466?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Julie Tibshirani resolved LUCENE-10466.
---
Fix Version/s: 9.2
Resolution: Fixed
> IndexSortSortedNumericDocValuesRangeQ
[
https://issues.apache.org/jira/browse/LUCENE-10162?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517106#comment-17517106
]
Adrien Grand commented on LUCENE-10162:
---
I don't think we should remove the point
[
https://issues.apache.org/jira/browse/LUCENE-10162?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517113#comment-17517113
]
Nick Knize commented on LUCENE-10162:
-
+1
I also like the idea of specifying thei
[
https://issues.apache.org/jira/browse/LUCENE-10470?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Yixun Xu updated LUCENE-10470:
--
Attachment: polygon3.geojson
> Unable to Tessellate polygon
>
>
>
[
https://issues.apache.org/jira/browse/LUCENE-10470?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517128#comment-17517128
]
Yixun Xu commented on LUCENE-10470:
---
[~ivera] Here is another shape that still fails
[
https://issues.apache.org/jira/browse/LUCENE-10470?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517128#comment-17517128
]
Yixun Xu edited comment on LUCENE-10470 at 4/4/22 9:35 PM:
---
[
[
https://issues.apache.org/jira/browse/LUCENE-10470?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517128#comment-17517128
]
Yixun Xu edited comment on LUCENE-10470 at 4/4/22 9:36 PM:
---
[
[
https://issues.apache.org/jira/browse/LUCENE-10470?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517128#comment-17517128
]
Yixun Xu edited comment on LUCENE-10470 at 4/4/22 9:41 PM:
---
[
yixunx commented on PR #756:
URL: https://github.com/apache/lucene/pull/756#issuecomment-1088053353
@iverase As mentioned in my [latest comment on
Jira](https://issues.apache.org/jira/browse/LUCENE-10470?focusedCommentId=17517128&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-t
[
https://issues.apache.org/jira/browse/LUCENE-10470?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517128#comment-17517128
]
Yixun Xu edited comment on LUCENE-10470 at 4/4/22 9:58 PM:
---
[
wjp719 commented on PR #731:
URL: https://github.com/apache/lucene/pull/731#issuecomment-1088216255
@jpountz please help to merge this pr, thanks
--
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 t
zacharymorn commented on code in PR #767:
URL: https://github.com/apache/lucene/pull/767#discussion_r842337292
##
lucene/core/src/test/org/apache/lucene/search/TestFieldExistsQuery.java:
##
@@ -0,0 +1,717 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or m
zacharymorn commented on code in PR #767:
URL: https://github.com/apache/lucene/pull/767#discussion_r842339261
##
lucene/core/src/test/org/apache/lucene/search/TestFieldExistsQuery.java:
##
@@ -0,0 +1,717 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or m
zacharymorn commented on PR #767:
URL: https://github.com/apache/lucene/pull/767#issuecomment-1088271498
> Thanks, I think we should fix tests differently, but things make sense to
me otherwise.
Thanks @jpountz for the review and suggestions! I have updated the tests
accordingly, and
jpountz commented on code in PR #767:
URL: https://github.com/apache/lucene/pull/767#discussion_r842414103
##
lucene/core/src/test/org/apache/lucene/search/TestFieldExistsQuery.java:
##
@@ -65,20 +65,21 @@ public void testDocValuesRewriteWithTermsPresent() throws
IOException {
jpountz commented on code in PR #780:
URL: https://github.com/apache/lucene/pull/780#discussion_r842415780
##
lucene/core/src/java/org/apache/lucene/search/comparators/NumericComparator.java:
##
@@ -94,6 +95,7 @@ public void disableSkipping() {
private long iteratorCost;
jpountz merged PR #764:
URL: https://github.com/apache/lucene/pull/764
--
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.apache.
jpountz merged PR #765:
URL: https://github.com/apache/lucene/pull/765
--
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.apache.
[
https://issues.apache.org/jira/browse/LUCENE-10002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517251#comment-17517251
]
ASF subversion and git services commented on LUCENE-10002:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10484?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517252#comment-17517252
]
ASF subversion and git services commented on LUCENE-10484:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517253#comment-17517253
]
ASF subversion and git services commented on LUCENE-10002:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10484?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517256#comment-17517256
]
ASF subversion and git services commented on LUCENE-10484:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10484?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Adrien Grand resolved LUCENE-10484.
---
Fix Version/s: 9.2
Resolution: Fixed
> Add support for concurrent facets random samp
[
https://issues.apache.org/jira/browse/LUCENE-10002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517257#comment-17517257
]
ASF subversion and git services commented on LUCENE-10002:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10484?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517258#comment-17517258
]
ASF subversion and git services commented on LUCENE-10484:
--
Co
[
https://issues.apache.org/jira/browse/LUCENE-10002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17517259#comment-17517259
]
ASF subversion and git services commented on LUCENE-10002:
--
Co
61 matches
Mail list logo