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/12/02 14:52:38 UTC

[lucene] branch main updated (0ec217b -> 3d61ff2)

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 0ec217b  Make EndiannessReverser(Data|Index)Input always reverse byte order. (#502)
     add 3d61ff2  LUCENE-10233: Store docIds as bitset to speed up addAll (#438)

No new revisions were added by this update.

Summary of changes:
 lucene/CHANGES.txt                                 |  3 +
 .../lucene/document/LatLonPointDistanceQuery.java  |  5 ++
 .../apache/lucene/document/RangeFieldQuery.java    |  5 ++
 .../org/apache/lucene/document/SpatialQuery.java   |  5 ++
 .../lucene/document/XYPointInGeometryQuery.java    |  5 ++
 .../java/org/apache/lucene/index/PointValues.java  | 11 +++
 .../org/apache/lucene/search/PointInSetQuery.java  | 10 +++
 .../org/apache/lucene/search/PointRangeQuery.java  |  5 ++
 ...SetIterator.java => DocBaseBitSetIterator.java} | 69 ++++++++----------
 .../org/apache/lucene/util/DocIdSetBuilder.java    | 12 ++++
 .../java/org/apache/lucene/util/FixedBitSet.java   | 19 +++--
 .../org/apache/lucene/util/bkd/DocIdsWriter.java   | 84 +++++++++++++++++++++-
 .../apache/lucene/util/bkd/TestDocIdsWriter.java   | 18 +++++
 .../lucene/sandbox/search/MultiRangeQuery.java     |  5 ++
 .../spatial3d/PointInShapeIntersectVisitor.java    |  7 ++
 15 files changed, 218 insertions(+), 45 deletions(-)
 copy lucene/core/src/java/org/apache/lucene/util/{BitSetIterator.java => DocBaseBitSetIterator.java} (52%)