[jira] [Created] (LUCENE-9942) CLONE - Proper ASCII folding of Danish/Norwegian characters Ø, Å

2021-04-28 Thread Jacob Lauritzen (Jira)
Jacob Lauritzen created LUCENE-9942: --- Summary: CLONE - Proper ASCII folding of Danish/Norwegian characters Ø, Å Key: LUCENE-9942 URL: https://issues.apache.org/jira/browse/LUCENE-9942 Project: Lucen

[jira] [Commented] (LUCENE-9939) Proper ASCII folding of Danish/Norwegian characters Ø, Å

2021-04-28 Thread Jacob Lauritzen (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9939?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17334562#comment-17334562 ] Jacob Lauritzen commented on LUCENE-9939: - Understood, thanks. > Proper ASCII f

[jira] [Updated] (LUCENE-9939) Proper ASCII folding of Danish/Norwegian characters Ø, Å

2021-04-28 Thread Jacob Lauritzen (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9939?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacob Lauritzen updated LUCENE-9939: Status: Open (was: Patch Available) > Proper ASCII folding of Danish/Norwegian characters

[jira] [Resolved] (LUCENE-9942) CLONE - Proper ASCII folding of Danish/Norwegian characters Ø, Å

2021-04-28 Thread Jacob Lauritzen (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9942?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacob Lauritzen resolved LUCENE-9942. - Resolution: Duplicate > CLONE - Proper ASCII folding of Danish/Norwegian characters Ø, Å

[jira] [Resolved] (LUCENE-9939) Proper ASCII folding of Danish/Norwegian characters Ø, Å

2021-04-28 Thread Jacob Lauritzen (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9939?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jacob Lauritzen resolved LUCENE-9939. - Resolution: Won't Fix > Proper ASCII folding of Danish/Norwegian characters Ø, Å > -

[GitHub] [lucene] romseygeek opened a new pull request #109: LUCENE-9930: Only load Ukrainian morfologik dictionary once per JVM

2021-04-28 Thread GitBox
romseygeek opened a new pull request #109: URL: https://github.com/apache/lucene/pull/109 The UkrainianMorfologikAnalyzer was reloading its dictionary every time it created a new TokenStreamComponents, which meant that while the analyzer was open it would hold onto one copy of the d

[GitHub] [lucene] romseygeek opened a new pull request #110: LUCENE-9940: DisjunctionMaxQuery shouldn't depend on disjunct order for equals checks

2021-04-28 Thread GitBox
romseygeek opened a new pull request #110: URL: https://github.com/apache/lucene/pull/110 DisjunctionMaxQuery stores its disjuncts in a `Query[]`, and uses `Arrays.equals()` for comparisons in its `equals()` implementation. This means that the order in which disjuncts are added to the

[GitHub] [lucene] neoremind edited a comment on pull request #91: LUCENE-9932: Performance improvement for BKD index building

2021-04-28 Thread GitBox
neoremind edited a comment on pull request #91: URL: https://github.com/apache/lucene/pull/91#issuecomment-827678981 Note: Below benchmark is based on TimSort fallback sorter, I will re-run test case later. I spent some time trying to use the real case benchmark. The speedup of `Ind

[GitHub] [lucene] neoremind edited a comment on pull request #91: LUCENE-9932: Performance improvement for BKD index building

2021-04-28 Thread GitBox
neoremind edited a comment on pull request #91: URL: https://github.com/apache/lucene/pull/91#issuecomment-827678981 Note: Below benchmark is based on TimSort fallback sorter, I will re-run test case later to see if it is even better. I spent some time trying to use the real case ben

[GitHub] [lucene] msokolov closed pull request #106: LUCENE-9905: rename VectorValues.SearchStrategy to VectorValues.SimilarityFunction

2021-04-28 Thread GitBox
msokolov closed pull request #106: URL: https://github.com/apache/lucene/pull/106 -- 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. For queries about this service, please c

[GitHub] [lucene] msokolov commented on pull request #106: LUCENE-9905: rename VectorValues.SearchStrategy to VectorValues.SimilarityFunction

2021-04-28 Thread GitBox
msokolov commented on pull request #106: URL: https://github.com/apache/lucene/pull/106#issuecomment-828422200 I merged this separately -- 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 specif

[GitHub] [lucene] romseygeek merged pull request #109: LUCENE-9930: Only load Ukrainian morfologik dictionary once per JVM

2021-04-28 Thread GitBox
romseygeek merged pull request #109: URL: https://github.com/apache/lucene/pull/109 -- 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. For queries about this service, please

[jira] [Commented] (LUCENE-9930) UkrainianMorfologikAnalyzer reloads its Dictionary for every new TokenStreamComponents instance

2021-04-28 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9930?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17334710#comment-17334710 ] ASF subversion and git services commented on LUCENE-9930: - Commi

[GitHub] [lucene] iverase commented on a change in pull request #107: LUCENE-9047: Move the Directory APIs to be little endian (take 2)

2021-04-28 Thread GitBox
iverase commented on a change in pull request #107: URL: https://github.com/apache/lucene/pull/107#discussion_r622242751 ## File path: lucene/core/src/java/org/apache/lucene/codecs/CodecUtil.java ## @@ -640,6 +640,33 @@ static void writeCRC(IndexOutput output) throws IOExcepti

[GitHub] [lucene] iverase commented on a change in pull request #107: LUCENE-9047: Move the Directory APIs to be little endian (take 2)

2021-04-28 Thread GitBox
iverase commented on a change in pull request #107: URL: https://github.com/apache/lucene/pull/107#discussion_r622243643 ## File path: lucene/backward-codecs/src/java/org/apache/lucene/backward_codecs/packed/LegacyDirectWriter.java ## @@ -0,0 +1,177 @@ +/* + * Licensed to the

[GitHub] [lucene] iverase commented on a change in pull request #107: LUCENE-9047: Move the Directory APIs to be little endian (take 2)

2021-04-28 Thread GitBox
iverase commented on a change in pull request #107: URL: https://github.com/apache/lucene/pull/107#discussion_r622244082 ## File path: lucene/backward-codecs/src/java/org/apache/lucene/backward_codecs/packed/LegacyDirectReader.java ## @@ -0,0 +1,368 @@ +/* + * Licensed to the

[GitHub] [lucene] iverase commented on pull request #107: LUCENE-9047: Move the Directory APIs to be little endian (take 2)

2021-04-28 Thread GitBox
iverase commented on pull request #107: URL: https://github.com/apache/lucene/pull/107#issuecomment-828513235 I will set the PR ready to review as feedback has been positive so far. I want to stress that the most interesting part is how to deal with reading `segment.gen`. This file does no

[jira] [Created] (LUCENE-9943) DOC: Fix spelling(camelCase it like GitHub )

2021-04-28 Thread AYUSHMAN SINGH CHAUHAN (Jira)
AYUSHMAN SINGH CHAUHAN created LUCENE-9943: -- Summary: DOC: Fix spelling(camelCase it like GitHub ) Key: LUCENE-9943 URL: https://issues.apache.org/jira/browse/LUCENE-9943 Project: Lucene - Co

[GitHub] [lucene] ayushman17 opened a new pull request #111: LUCENE-9943 DOC: Fix spelling (camelCase it like GitHub)

2021-04-28 Thread GitBox
ayushman17 opened a new pull request #111: URL: https://github.com/apache/lucene/pull/111 # Description Please provide a short description of the changes you're making with this pull request. - [x] Docs have been updated # Solution Please provide a s

[GitHub] [lucene] gus-asf merged pull request #111: LUCENE-9943 DOC: Fix spelling (camelCase it like GitHub)

2021-04-28 Thread GitBox
gus-asf merged pull request #111: URL: https://github.com/apache/lucene/pull/111 -- 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. For queries about this service, please co

[jira] [Resolved] (LUCENE-9943) DOC: Fix spelling(camelCase it like GitHub )

2021-04-28 Thread Gus Heck (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9943?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gus Heck resolved LUCENE-9943. -- Fix Version/s: 9.0 Resolution: Fixed Thanks  :) > DOC: Fix spelling(camelCase it like GitHub

[GitHub] [lucene] rmuir commented on pull request #107: LUCENE-9047: Move the Directory APIs to be little endian (take 2)

2021-04-28 Thread GitBox
rmuir commented on pull request #107: URL: https://github.com/apache/lucene/pull/107#issuecomment-828654863 > I will set the PR ready to review as feedback has been positive so far. I want to stress that the most interesting part is how to deal with reading `segment.gen`. This file does no

[GitHub] [lucene] ayushman17 commented on pull request #111: LUCENE-9943 DOC: Fix spelling (camelCase it like GitHub)

2021-04-28 Thread GitBox
ayushman17 commented on pull request #111: URL: https://github.com/apache/lucene/pull/111#issuecomment-828658851 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 the specific comment.

[GitHub] [lucene] neoremind edited a comment on pull request #91: LUCENE-9932: Performance improvement for BKD index building

2021-04-28 Thread GitBox
neoremind edited a comment on pull request #91: URL: https://github.com/apache/lucene/pull/91#issuecomment-827678981 I spent some time trying to use the real case benchmark. The speedup of `IndexWriter` is what we expected, faster than main branch, total time elapsed (include adding doc, b

[GitHub] [lucene-solr] gus-asf opened a new pull request #2485: LUCENE-9572 Backport from 9.0

2021-04-28 Thread GitBox
gus-asf opened a new pull request #2485: URL: https://github.com/apache/lucene-solr/pull/2485 -- 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. For queries about this servi

[GitHub] [lucene-solr] gus-asf merged pull request #2485: LUCENE-9572 Backport from 9.0

2021-04-28 Thread GitBox
gus-asf merged pull request #2485: URL: https://github.com/apache/lucene-solr/pull/2485 -- 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. For queries about this service, pl

[jira] [Commented] (LUCENE-9572) Allow TypeAsSynonymFilter to propagate selected flags and Ignore some types

2021-04-28 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17335078#comment-17335078 ] ASF subversion and git services commented on LUCENE-9572: - Commi

[jira] [Commented] (LUCENE-9572) Allow TypeAsSynonymFilter to propagate selected flags and Ignore some types

2021-04-28 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17335086#comment-17335086 ] ASF subversion and git services commented on LUCENE-9572: - Commi

[GitHub] [lucene] gus-asf opened a new pull request #112: LUCENE-9572 adjust changes entry

2021-04-28 Thread GitBox
gus-asf opened a new pull request #112: URL: https://github.com/apache/lucene/pull/112 -- 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. For queries about this service, ple

[GitHub] [lucene] gautamworah96 commented on a change in pull request #108: LUCENE-9897 Change dependency checking mechanism to use gradle checksum verification

2021-04-28 Thread GitBox
gautamworah96 commented on a change in pull request #108: URL: https://github.com/apache/lucene/pull/108#discussion_r622691393 ## File path: gradle/verification-metadata.xml ## @@ -0,0 +1,2198 @@ + +https://schema.gradle.org/dependency-verification"; xmlns:xsi="http://www.w3.o

[GitHub] [lucene] gautamworah96 commented on a change in pull request #108: LUCENE-9897 Change dependency checking mechanism to use gradle checksum verification

2021-04-28 Thread GitBox
gautamworah96 commented on a change in pull request #108: URL: https://github.com/apache/lucene/pull/108#discussion_r622691393 ## File path: gradle/verification-metadata.xml ## @@ -0,0 +1,2198 @@ + +https://schema.gradle.org/dependency-verification"; xmlns:xsi="http://www.w3.o

[GitHub] [lucene] zacharymorn opened a new pull request #113: LUCENE-9335: [Discussion Only] Implement BMM with BulkScorer interface

2021-04-28 Thread GitBox
zacharymorn opened a new pull request #113: URL: https://github.com/apache/lucene/pull/113 Implement BMM algorithm from "Optimizing Top-k Document Retrieval Strategies for Block-Max Indexes" by Dimopoulos, Nepomnyachiy and Suel, using BulkScorer interface. This BMM implementation p

[jira] [Commented] (LUCENE-9335) Add a bulk scorer for disjunctions that does dynamic pruning

2021-04-28 Thread Zach Chen (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9335?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17335125#comment-17335125 ] Zach Chen commented on LUCENE-9335: --- I've implemented the above strategy and opened a

[GitHub] [lucene] gus-asf merged pull request #112: LUCENE-9572 adjust changes entry

2021-04-28 Thread GitBox
gus-asf merged pull request #112: URL: https://github.com/apache/lucene/pull/112 -- 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. For queries about this service, please co

[jira] [Commented] (LUCENE-9572) Allow TypeAsSynonymFilter to propagate selected flags and Ignore some types

2021-04-28 Thread ASF subversion and git services (Jira)
[ https://issues.apache.org/jira/browse/LUCENE-9572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17335140#comment-17335140 ] ASF subversion and git services commented on LUCENE-9572: - Commi