[GitHub] [lucene] zacharymorn commented on a diff in pull request #972: LUCENE-10480: Use BMM scorer for 2 clauses disjunction

2022-06-28 Thread GitBox
zacharymorn commented on code in PR #972: URL: https://github.com/apache/lucene/pull/972#discussion_r909131198 ## lucene/core/src/java/org/apache/lucene/search/BlockMaxMaxscoreScorer.java: ## @@ -0,0 +1,314 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one

[GitHub] [lucene] mocobeta merged pull request #988: LUCENE-10557: temprarily enable github issue

2022-06-28 Thread GitBox
mocobeta merged PR #988: URL: https://github.com/apache/lucene/pull/988 -- 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:

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread ASF subversion and git services (Jira)
Title: Message Title ASF subversion and

[GitHub] [lucene] zacharymorn commented on pull request #972: LUCENE-10480: Use BMM scorer for 2 clauses disjunction

2022-06-28 Thread GitBox
zacharymorn commented on PR #972: URL: https://github.com/apache/lucene/pull/972#issuecomment-1169526849 Here are the latest benchmark results after the update: ``` TaskQPS baseline StdDevQPS my_modified_version StdDevPct diff

[GitHub] [lucene] mayya-sharipova commented on pull request #992: LUCENE-105902 Build HNSW Graph on indexing

2022-06-28 Thread GitBox
mayya-sharipova commented on PR #992: URL: https://github.com/apache/lucene/pull/992#issuecomment-1169371144 I still need to run benchmarking to make sure there are no regression, but opening a PR to get an initial review. -- This is an automated message from the Apache Git Service. To

[GitHub] [lucene] mocobeta commented on issue #993: Raise a test issue

2022-06-28 Thread GitBox
mocobeta commented on issue #993: URL: https://github.com/apache/lucene/issues/993#issuecomment-1169525142 Verified that external contributors cannot modify labels. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the

[GitHub] [lucene] mocobeta commented on issue #993: Raise a test issue

2022-06-28 Thread GitBox
mocobeta commented on issue #993: URL: https://github.com/apache/lucene/issues/993#issuecomment-1169535375 Thanks @LuXugang for noticing this. To devs, I will keep issues enabled for a while, please feel free to test and play around it. -- This is an automated message from the

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Ignacio Vera (Jira)
Title: Message Title Ignacio Vera

[GitHub] [lucene] mocobeta opened a new issue, #994: Notification test

2022-06-28 Thread GitBox
mocobeta opened a new issue, #994: URL: https://github.com/apache/lucene/issues/994 Notifications should be sent to `issues@lucene.apache.org` -- 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

[GitHub] [lucene] LuXugang commented on issue #993: Raise a test issue

2022-06-28 Thread GitBox
LuXugang commented on issue #993: URL: https://github.com/apache/lucene/issues/993#issuecomment-1169533099 A new start, Thanks for your great work  -- 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

[GitHub] [lucene] mocobeta commented on issue #994: Notification test

2022-06-28 Thread GitBox
mocobeta commented on issue #994: URL: https://github.com/apache/lucene/issues/994#issuecomment-1169533110 Confirmed that notification mails were sent to issues@lucene.apache.org when opening/closing an issue, and adding comments. Looks fine. -- This is an automated message from the

[GitHub] [lucene] gsmiller commented on a diff in pull request #974: LUCENE-10614: Properly support getTopChildren in RangeFacetCounts

2022-06-28 Thread GitBox
gsmiller commented on code in PR #974: URL: https://github.com/apache/lucene/pull/974#discussion_r908942536 ## lucene/demo/src/java/org/apache/lucene/demo/facet/DistanceFacetsExample.java: ## @@ -212,7 +212,26 @@ public static Query getBoundingBoxQuery( } /** User runs

[GitHub] [lucene] zacharymorn commented on a diff in pull request #972: LUCENE-10480: Use BMM scorer for 2 clauses disjunction

2022-06-28 Thread GitBox
zacharymorn commented on code in PR #972: URL: https://github.com/apache/lucene/pull/972#discussion_r909131493 ## lucene/core/src/java/org/apache/lucene/search/BlockMaxMaxscoreScorer.java: ## @@ -0,0 +1,314 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one

[GitHub] [lucene] mayya-sharipova opened a new pull request, #992: LUCENE-105902 Build HNSW Graph on indexing

2022-06-28 Thread GitBox
mayya-sharipova opened a new pull request, #992: URL: https://github.com/apache/lucene/pull/992 Currently, when indexing knn vectors, we buffer them in memory and on flush during a segment construction we build an HNSW graph. As building an HNSW graph is very expensive, this makes

[GitHub] [lucene] zacharymorn commented on a diff in pull request #972: LUCENE-10480: Use BMM scorer for 2 clauses disjunction

2022-06-28 Thread GitBox
zacharymorn commented on code in PR #972: URL: https://github.com/apache/lucene/pull/972#discussion_r909134436 ## lucene/core/src/java/org/apache/lucene/search/BlockMaxMaxscoreScorer.java: ## @@ -0,0 +1,314 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one

[GitHub] [lucene] mocobeta opened a new issue, #993: Raise a test issue

2022-06-28 Thread GitBox
mocobeta opened a new issue, #993: URL: https://github.com/apache/lucene/issues/993 It's a test issue. Please do not use GitHub issues until the migration will have done; Issues should be raised in [Jira](https://issues.apache.org/jira/projects/LUCENE/). -- This is an automated

[GitHub] [lucene] gsmiller commented on a diff in pull request #974: LUCENE-10614: Properly support getTopChildren in RangeFacetCounts

2022-06-28 Thread GitBox
gsmiller commented on code in PR #974: URL: https://github.com/apache/lucene/pull/974#discussion_r908941811 ## lucene/facet/src/java/org/apache/lucene/facet/range/RangeFacetCounts.java: ## @@ -232,20 +233,43 @@ public FacetResult getAllChildren(String dim, String... path)

[GitHub] [lucene] jtibshirani commented on a diff in pull request #932: LUCENE-10559: Add Prefilter Option to KnnGraphTester

2022-06-28 Thread GitBox
jtibshirani commented on code in PR #932: URL: https://github.com/apache/lucene/pull/932#discussion_r908941633 ## lucene/core/src/java/org/apache/lucene/search/KnnVectorQuery.java: ## @@ -225,6 +225,11 @@ public BitSetIterator getIterator(int contextOrd) { return new

[GitHub] [lucene] mocobeta closed issue #994: Notification test

2022-06-28 Thread GitBox
mocobeta closed issue #994: Notification test URL: https://github.com/apache/lucene/issues/994 -- 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:

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Uwe Schindler (Jira)
Title: Message Title Uwe Schindler

[jira] [Commented] (LUCENE-10616) Moving to dictionaries has made stored fields slower at skipping

2022-06-28 Thread fang hou (Jira)
Title: Message Title fang hou commented

[GitHub] [lucene] jpountz commented on a diff in pull request #967: LUCENE-10623: Error implementation of docValueCount for SortingSortedSetDocValues

2022-06-28 Thread GitBox
jpountz commented on code in PR #967: URL: https://github.com/apache/lucene/pull/967#discussion_r908179203 ## lucene/core/src/java/org/apache/lucene/index/SortedSetDocValuesWriter.java: ## @@ -415,34 +419,45 @@ public BytesRef lookupOrd(long ord) throws IOException {

[GitHub] [lucene] uschindler commented on a diff in pull request #978: Remove/deprecate obsolete constants in oal.util.Constants; remove code which is no longer executed after Java 9

2022-06-28 Thread GitBox
uschindler commented on code in PR #978: URL: https://github.com/apache/lucene/pull/978#discussion_r908185028 ## lucene/core/src/java/org/apache/lucene/util/Constants.java: ## @@ -84,10 +97,27 @@ private Constants() {} // can't construct JRE_IS_64BIT = is64Bit; } -

[GitHub] [lucene] uschindler commented on a diff in pull request #978: Remove/deprecate obsolete constants in oal.util.Constants; remove code which is no longer executed after Java 9

2022-06-28 Thread GitBox
uschindler commented on code in PR #978: URL: https://github.com/apache/lucene/pull/978#discussion_r908210561 ## lucene/core/src/java/org/apache/lucene/index/IndexWriter.java: ## @@ -4775,14 +4775,14 @@ private static void setDiagnostics(SegmentInfo info, String source, Map

[jira] [Commented] (LUCENE-10627) Using CompositeByteBuf to Reduce Memory Copy

2022-06-28 Thread Uwe Schindler (Jira)
Title: Message Title Uwe Schindler

[GitHub] [lucene] uschindler commented on a diff in pull request #978: Remove/deprecate obsolete constants in oal.util.Constants; remove code which is no longer executed after Java 9

2022-06-28 Thread GitBox
uschindler commented on code in PR #978: URL: https://github.com/apache/lucene/pull/978#discussion_r908184454 ## lucene/core/src/java/org/apache/lucene/util/Constants.java: ## @@ -84,10 +97,27 @@ private Constants() {} // can't construct JRE_IS_64BIT = is64Bit; } -

[GitHub] [lucene] alessandrobenedetti commented on pull request #926: VectorSimilarityFunction reverse removal

2022-06-28 Thread GitBox
alessandrobenedetti commented on PR #926: URL: https://github.com/apache/lucene/pull/926#issuecomment-1168280355 > "I was also wondering if you have addressed the previous Mike S.'s https://github.com/apache/lucene/pull/926#issuecomment-1164418508. I assume that your train files

[GitHub] [lucene] Yuti-G commented on a diff in pull request #974: LUCENE-10614: Properly support getTopChildren in RangeFacetCounts

2022-06-28 Thread GitBox
Yuti-G commented on code in PR #974: URL: https://github.com/apache/lucene/pull/974#discussion_r908084991 ## lucene/facet/src/java/org/apache/lucene/facet/range/RangeFacetCounts.java: ## @@ -232,20 +233,43 @@ public FacetResult getAllChildren(String dim, String... path) throws

[GitHub] [lucene] uschindler commented on a diff in pull request #978: Remove/deprecate obsolete constants in oal.util.Constants; remove code which is no longer executed after Java 9

2022-06-28 Thread GitBox
uschindler commented on code in PR #978: URL: https://github.com/apache/lucene/pull/978#discussion_r908184454 ## lucene/core/src/java/org/apache/lucene/util/Constants.java: ## @@ -84,10 +97,27 @@ private Constants() {} // can't construct JRE_IS_64BIT = is64Bit; } -

[GitHub] [lucene] Yuti-G commented on a diff in pull request #974: LUCENE-10614: Properly support getTopChildren in RangeFacetCounts

2022-06-28 Thread GitBox
Yuti-G commented on code in PR #974: URL: https://github.com/apache/lucene/pull/974#discussion_r908084991 ## lucene/facet/src/java/org/apache/lucene/facet/range/RangeFacetCounts.java: ## @@ -232,20 +233,43 @@ public FacetResult getAllChildren(String dim, String... path) throws

[GitHub] [lucene] jpountz commented on a diff in pull request #972: LUCENE-10480: Use BMM scorer for 2 clauses disjunction

2022-06-28 Thread GitBox
jpountz commented on code in PR #972: URL: https://github.com/apache/lucene/pull/972#discussion_r908131031 ## lucene/core/src/java/org/apache/lucene/search/BlockMaxMaxscoreScorer.java: ## @@ -0,0 +1,314 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or

[GitHub] [lucene] uschindler commented on a diff in pull request #978: Remove/deprecate obsolete constants in oal.util.Constants; remove code which is no longer executed after Java 9

2022-06-28 Thread GitBox
uschindler commented on code in PR #978: URL: https://github.com/apache/lucene/pull/978#discussion_r908181282 ## lucene/core/src/java/org/apache/lucene/index/IndexWriter.java: ## @@ -4775,14 +4775,14 @@ private static void setDiagnostics(SegmentInfo info, String source, Map

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Dawid Weiss (Jira)
Title: Message Title Dawid Weiss

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Dawid Weiss (Jira)
Title: Message Title Dawid Weiss

[GitHub] [lucene] jpountz commented on pull request #989: Add back-compat indices for 8.11.2

2022-06-28 Thread GitBox
jpountz commented on PR #989: URL: https://github.com/apache/lucene/pull/989#issuecomment-1168391661 What sort of failures did you get? I wonder if it would make things easier to copy indexes that have been produced on `branch_8_11` instead of regenerating them from the `main` branch. --

[jira] [Commented] (LUCENE-10627) Using CompositeByteBuf to Reduce Memory Copy

2022-06-28 Thread Adrien Grand (Jira)
Title: Message Title Adrien Grand

[jira] [Comment Edited] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Uwe Schindler (Jira)
Title: Message Title Uwe Schindler edited

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Uwe Schindler (Jira)
Title: Message Title Uwe Schindler

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Robert Muir (Jira)
Title: Message Title Robert Muir

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Ignacio Vera (Jira)
Title: Message Title Ignacio Vera

[jira] [Updated] (LUCENE-10622) Prepare complete migration script to GitHub issue from Jira (best effort)

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida

[jira] [Commented] (LUCENE-10622) Prepare complete migration script to GitHub issue from Jira (best effort)

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida

[jira] [Updated] (LUCENE-10622) Prepare complete migration script to GitHub issue from Jira (best effort)

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida

[jira] [Comment Edited] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida edited

[jira] [Comment Edited] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Uwe Schindler (Jira)
Title: Message Title Uwe Schindler edited

[GitHub] [lucene] uschindler commented on a diff in pull request #978: Remove/deprecate obsolete constants in oal.util.Constants; remove code which is no longer executed after Java 9

2022-06-28 Thread GitBox
uschindler commented on code in PR #978: URL: https://github.com/apache/lucene/pull/978#discussion_r908355653 ## lucene/core/src/java/org/apache/lucene/index/IndexWriter.java: ## @@ -4775,14 +4775,14 @@ private static void setDiagnostics(SegmentInfo info, String source, Map

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida

[jira] [Comment Edited] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida edited

[jira] [Comment Edited] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Uwe Schindler (Jira)
Title: Message Title Uwe Schindler edited

[GitHub] [lucene] iverase commented on pull request #979: LUCENE-10396: Add capability to jump to the next document with different ord in SortedDocValues

2022-06-28 Thread GitBox
iverase commented on PR #979: URL: https://github.com/apache/lucene/pull/979#issuecomment-1168539694 I make a quick check if this patch by indexing 50 million documents in a sorted index. The documents just contain a SortedDocValues with a 10 bytes term. I checked the index size and the

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Uwe Schindler (Jira)
Title: Message Title Uwe Schindler

[GitHub] [lucene] msokolov commented on pull request #926: VectorSimilarityFunction reverse removal

2022-06-28 Thread GitBox
msokolov commented on PR #926: URL: https://github.com/apache/lucene/pull/926#issuecomment-1168906824 Yes please go ahead and backport the codec version upgrade to 9.x -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use

[GitHub] [lucene] msokolov commented on pull request #924: Create Lucene93 Codec and move Lucene92 to backwards_codecs

2022-06-28 Thread GitBox
msokolov commented on PR #924: URL: https://github.com/apache/lucene/pull/924#issuecomment-1168905880 Well, maybe we should wait until there is some actual change to be applied? Otherwise ... no, it should be fine to cherry-pick On Tue, Jun 28, 2022 at 9:52 AM Alessandro

[GitHub] [lucene] zacharymorn commented on a diff in pull request #972: LUCENE-10480: Use BMM scorer for 2 clauses disjunction

2022-06-28 Thread GitBox
zacharymorn commented on code in PR #972: URL: https://github.com/apache/lucene/pull/972#discussion_r908663130 ## lucene/core/src/java/org/apache/lucene/search/BlockMaxMaxscoreScorer.java: ## @@ -0,0 +1,314 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one

[GitHub] [lucene] jpountz commented on a diff in pull request #972: LUCENE-10480: Use BMM scorer for 2 clauses disjunction

2022-06-28 Thread GitBox
jpountz commented on code in PR #972: URL: https://github.com/apache/lucene/pull/972#discussion_r908672681 ## lucene/core/src/java/org/apache/lucene/search/BlockMaxMaxscoreScorer.java: ## @@ -0,0 +1,314 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or

[GitHub] [lucene] madrob commented on pull request #989: Add back-compat indices for 8.11.2

2022-06-28 Thread GitBox
madrob commented on PR #989: URL: https://github.com/apache/lucene/pull/989#issuecomment-1168939508 Both the old index in d64900e and the regenerated index in f158be9 came off of branch_8_11, and more specifically the 8.11.2 release tag. I don't understand why they are different though.

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Robert Muir (Jira)
Title: Message Title Robert Muir

[GitHub] [lucene] msokolov commented on a diff in pull request #951: LUCENE-10606: Optimize Prefilter Hit Collection

2022-06-28 Thread GitBox
msokolov commented on code in PR #951: URL: https://github.com/apache/lucene/pull/951#discussion_r908461540 ## lucene/core/src/java/org/apache/lucene/search/KnnVectorQuery.java: ## @@ -92,20 +91,40 @@ public KnnVectorQuery(String field, float[] target, int k, Query filter) {

[jira] [Commented] (LUCENE-10593) VectorSimilarityFunction reverse removal

2022-06-28 Thread ASF subversion and git services (Jira)
Title: Message Title ASF subversion and

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Dawid Weiss (Jira)
Title: Message Title Dawid Weiss

[GitHub] [lucene] alessandrobenedetti commented on pull request #924: Create Lucene93 Codec and move Lucene92 to backwards_codecs

2022-06-28 Thread GitBox
alessandrobenedetti commented on PR #924: URL: https://github.com/apache/lucene/pull/924#issuecomment-1168755985 Any reason this has not been cherry-picked to [branch_9x](https://github.com/apache/lucene/tree/branch_9x) ? -- This is an automated message from the Apache Git Service. To

[GitHub] [lucene] alessandrobenedetti commented on pull request #926: VectorSimilarityFunction reverse removal

2022-06-28 Thread GitBox
alessandrobenedetti commented on PR #926: URL: https://github.com/apache/lucene/pull/926#issuecomment-1168758957 I was planning to cherry pick this to [branch_9x](https://github.com/apache/lucene/tree/branch_9x) but I found a conflict related to the lack of cherry picking of this commit:

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Robert Muir (Jira)
Title: Message Title Robert Muir

[jira] [Comment Edited] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida edited

[GitHub] [lucene] dweiss merged pull request #991: Update randomizedtesting to 2.8.0, hppc to 0.9.1, morfologik to 2.1.9.

2022-06-28 Thread GitBox
dweiss merged PR #991: URL: https://github.com/apache/lucene/pull/991 -- 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:

[jira] [Commented] (LUCENE-10603) Improve iteration of ords for SortedSetDocValues

2022-06-28 Thread Greg Miller (Jira)
Title: Message Title Greg Miller

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Robert Muir (Jira)
Title: Message Title Robert Muir

[GitHub] [lucene] alessandrobenedetti merged pull request #926: VectorSimilarityFunction reverse removal

2022-06-28 Thread GitBox
alessandrobenedetti merged PR #926: URL: https://github.com/apache/lucene/pull/926 -- 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:

[GitHub] [lucene] kaivalnp commented on a diff in pull request #951: LUCENE-10606: Optimize Prefilter Hit Collection

2022-06-28 Thread GitBox
kaivalnp commented on code in PR #951: URL: https://github.com/apache/lucene/pull/951#discussion_r908867024 ## lucene/core/src/java/org/apache/lucene/search/KnnVectorQuery.java: ## @@ -92,20 +91,40 @@ public KnnVectorQuery(String field, float[] target, int k, Query filter) {

[GitHub] [lucene] kaivalnp commented on a diff in pull request #932: LUCENE-10559: Add Prefilter Option to KnnGraphTester

2022-06-28 Thread GitBox
kaivalnp commented on code in PR #932: URL: https://github.com/apache/lucene/pull/932#discussion_r908869810 ## lucene/core/src/java/org/apache/lucene/search/KnnVectorQuery.java: ## @@ -225,6 +225,11 @@ public BitSetIterator getIterator(int contextOrd) { return new

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Robert Muir (Jira)
Title: Message Title Robert Muir

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Robert Muir (Jira)
Title: Message Title Robert Muir

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Robert Muir (Jira)
Title: Message Title Robert Muir

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Ignacio Vera (Jira)
Title: Message Title Ignacio Vera

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Ignacio Vera (Jira)
Title: Message Title Ignacio Vera

[jira] [Created] (LUCENE-10628) Enable MatchingFacetSetCounts to use space partitioning data structures

2022-06-28 Thread Marc D'Mello (Jira)
Title: Message Title Marc D'Mello created

[jira] [Resolved] (LUCENE-10274) Implement "hyperrectangle" faceting

2022-06-28 Thread Greg Miller (Jira)
Title: Message Title Greg Miller resolved

[jira] [Created] (LUCENE-10629) Add fastMatchQuery param to MatchingFacetSetCounts

2022-06-28 Thread Marc D'Mello (Jira)
Title: Message Title Marc D'Mello created

[jira] [Commented] (LUCENE-10396) Automatically create sparse indexes for sort fields

2022-06-28 Thread Ignacio Vera (Jira)
Title: Message Title Ignacio Vera

[jira] [Commented] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida

[jira] [Comment Edited] (LUCENE-10557) Migrate to GitHub issue from Jira

2022-06-28 Thread Tomoko Uchida (Jira)
Title: Message Title Tomoko Uchida edited