You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ji...@apache.org on 2019/10/21 13:03:29 UTC

[lucene-solr] branch master updated (2e6119e -> 066d324)

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

jimczi pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 2e6119e  tweak documentation to be clearer about uprefix
     new 58fabbe  LUCENE-8992: Share minimum score across segment in concurrent search
     new 75ff81c  review feedback + add ut
     new 7d96b04  fix spacing
     new ee50a38  Merge branch 'master' into shared_min_score
     new 7eab6eb  refactor updateMinCompetitiveScore and ensures that the recorded min competitive score is resetted on setScorer
     new f55633c  cleanup test and restore realistic test with line file docs
     new 1770f15  fix bottomValueChecker assignment in index searcher
     new 93d135e  do not check global minimum score on non-competitive hits since it hurts constant score queries
     new 5895797  revert some refactoring that made sense when updateMinCompetitiveScore was called eagerly
     new 47f9bf6  check the global maximum minimum score every 1024 collected docs
     new 1ffee87  fix style
     new b623f63  address review and add an entry to the changes
     new 6a5279d  replace modulo with a bitwise operation
     new 7b0c096  Merge branch 'master' into shared_min_score
     new 50ae67b  Update lucene/core/src/java/org/apache/lucene/search/TopFieldCollector.java
     new a35996f  Update lucene/core/src/java/org/apache/lucene/search/TopScoreDocCollector.java
     new 66a8ad0  fix the logic to require the next float when checking the global minimum score
     new 4cd9759  fix uts
     new 066d324  Merge pull request #904 from jimczi/shared_min_score

The 32483 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lucene/CHANGES.txt                                 |   3 +
 .../apache/lucene/search/BottomValueChecker.java   |  52 ------
 .../org/apache/lucene/search/IndexSearcher.java    |  10 +-
 .../apache/lucene/search/MaxScoreAccumulator.java  |  90 +++++++++
 .../apache/lucene/search/TopFieldCollector.java    |  97 ++++++++--
 .../apache/lucene/search/TopScoreDocCollector.java | 103 +++++++----
 .../lucene/search/TestMaxScoreAccumulator.java     |  57 ++++++
 .../apache/lucene/search/TestTopDocsCollector.java | 204 +++++++++++++++++++--
 .../lucene/search/TestTopFieldCollector.java       | 195 ++++++++++++++++++++
 9 files changed, 683 insertions(+), 128 deletions(-)
 delete mode 100644 lucene/core/src/java/org/apache/lucene/search/BottomValueChecker.java
 create mode 100644 lucene/core/src/java/org/apache/lucene/search/MaxScoreAccumulator.java
 create mode 100644 lucene/core/src/test/org/apache/lucene/search/TestMaxScoreAccumulator.java