You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by gs...@apache.org on 2021/09/17 17:36:54 UTC

[lucene] branch main updated (4e86df9 -> deff5a1)

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

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


    from 4e86df9  LUCENE-10102: Add JapaneseCompletionFilter for Input Method-aware auto-completion (#297)
     add deff5a1  LUCENE-10070: Skip deleted documents during facet counting for all documents (#293)

No new revisions were added by this update.

Summary of changes:
 lucene/CHANGES.txt                                 |   2 +
 .../java/org/apache/lucene/facet/FacetUtils.java   |  84 ++++++++++++++++
 .../apache/lucene/facet/LongValueFacetCounts.java  |  14 ++-
 .../lucene/facet/StringValueFacetCounts.java       |  16 ++--
 .../ConcurrentSortedSetDocValuesFacetCounts.java   |   7 +-
 .../sortedset/SortedSetDocValuesFacetCounts.java   |  13 ++-
 .../org/apache/lucene/facet/TestFacetUtils.java    | 106 +++++++++++++++++++++
 .../lucene/facet/TestLongValueFacetCounts.java     |  28 ++++++
 .../lucene/facet/TestStringValueFacetCounts.java   |  35 +++++++
 .../sortedset/TestSortedSetDocValuesFacets.java    |  53 +++++++++++
 10 files changed, 345 insertions(+), 13 deletions(-)
 create mode 100644 lucene/facet/src/java/org/apache/lucene/facet/FacetUtils.java
 create mode 100644 lucene/facet/src/test/org/apache/lucene/facet/TestFacetUtils.java