You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2021/05/14 07:33:52 UTC

[lucene] branch main updated (f215a55 -> fd4b3c8)

This is an automated email from the ASF dual-hosted git repository.

jpountz pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git.


    from f215a55  LUCENE-9827: move CHANGES.txt entry from 9.0 to 8.9
     add fd4b3c8  LUCENE-9932: Performance improvement for BKD index building (#91)

No new revisions were added by this update.

Summary of changes:
 lucene/CHANGES.txt                                 |  2 +
 .../apache/lucene/codecs/MutablePointValues.java   |  6 ++
 .../org/apache/lucene/index/PointValuesWriter.java | 26 +++++++
 .../org/apache/lucene/util/MSBRadixSorter.java     | 10 +--
 .../apache/lucene/util/StableMSBRadixSorter.java   | 81 ++++++++++++++++++++++
 .../lucene/util/bkd/MutablePointsReaderUtils.java  | 71 ++++++++-----------
 ...ixSorter.java => TestStableMSBRadixSorter.java} | 29 +++++++-
 .../test/org/apache/lucene/util/bkd/TestBKD.java   | 22 ++++++
 .../util/bkd/TestMutablePointsReaderUtils.java     | 64 ++++++++++++++---
 9 files changed, 250 insertions(+), 61 deletions(-)
 create mode 100644 lucene/core/src/java/org/apache/lucene/util/StableMSBRadixSorter.java
 copy lucene/core/src/test/org/apache/lucene/util/{TestMSBRadixSorter.java => TestStableMSBRadixSorter.java} (86%)