Method FilteredBulkScorer
FilteredBulkScorer(AtomicReaderContext, Weight, Boolean, DocIdSet)
Returns a filtered BulkScorer based on this strategy. this is an optional method: the default implementation just calls FilteredScorer(AtomicReaderContext, Weight, DocIdSet) and wraps that into a BulkScorer.
Declaration
public virtual BulkScorer FilteredBulkScorer(AtomicReaderContext context, Weight weight, bool scoreDocsInOrder, DocIdSet docIdSet)
Parameters
Type | Name | Description |
---|---|---|
AtomicReaderContext | context | the AtomicReaderContext for which to return the Scorer. |
Weight | weight | the FilteredQuery Weight to create the filtered scorer. |
System.Boolean | scoreDocsInOrder |
|
DocIdSet | docIdSet | the filter DocIdSet to apply |
Returns
Type | Description |
---|---|
BulkScorer | a filtered top scorer |