Skip to content

Commit

Permalink
switch migrate entries
Browse files Browse the repository at this point in the history
  • Loading branch information
javanna committed Sep 5, 2024
1 parent 51283d2 commit c26db4b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lucene/MIGRATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -793,17 +793,17 @@ Specifically, the method `FunctionValues#getScorer(Weight weight, LeafReaderCont
Callers must now keep track of the Weight instance that created the Scorer if they need it, instead of relying on
Scorer.

### `SearchWithCollectorTask` no longer supports the `collector.class` config parameter

`collector.class` used to allow users to load a custom collector implementation. `collector.manager.class`
replaces it by allowing users to load a custom collector manager instead. (Luca Cavanna)

### BulkScorer#score(LeafCollector collector, Bits acceptDocs) removed

Use `BulkScorer#score(LeafCollector collector, Bits acceptDocs, int min, int max)` instead. In order to score the
entire leaf, provide `0` as min and `DocIdSetIterator.NO_MORE_DOCS` as max. `BulkScorer` subclasses that override
such method need to instead override the method variant that takes the range of doc ids as well as arguments.

### `SearchWithCollectorTask` no longer supports the `collector.class` config parameter

`collector.class` used to allow users to load a custom collector implementation. `collector.manager.class`
replaces it by allowing users to load a custom collector manager instead. (Luca Cavanna)

### CollectorManager#newCollector and Collector#getLeafCollector contract

With the introduction of intra-segment query concurrency support, a `LeafCollector` for a given `LeafReaderContext`
Expand Down

0 comments on commit c26db4b

Please sign in to comment.