Uses of Class
org.apache.lucene.search.BulkScorer
Packages that use BulkScorer
Package
Description
Faceted search.
Code to search indices.
Support for index-time and query-time joins.
Support for document suggestion
-
Uses of BulkScorer in org.apache.lucene.facet
Subclasses of BulkScorer in org.apache.lucene.facet -
Uses of BulkScorer in org.apache.lucene.search
Subclasses of BulkScorer in org.apache.lucene.searchModifier and TypeClassDescription(package private) final class
BulkScorer implementation ofBlockMaxConjunctionScorer
that focuses on top-level conjunctions over clauses that do not have two-phase iterators.(package private) final class
BulkScorer
that is used for pure disjunctions and disjunctions that have low values ofBooleanQuery.Builder.setMinimumNumberShouldMatch(int)
and dense clauses.(package private) final class
BulkScorer implementation ofConjunctionScorer
.protected static class
We return this as ourBulkScorer
so that if the CSQ wraps a query with its own optimized top-level scorer (e.g.(package private) final class
Bulk scorer forDisjunctionMaxQuery
when the tie-break multiplier is zero.(package private) final class
(package private) final class
(package private) final class
TheTimeLimitingBulkScorer
is used to timeout search requests that take longer than the maximum allowed search time limit.protected static class
Just wraps a Scorer and performs top scoring using it.Fields in org.apache.lucene.search declared as BulkScorerModifier and TypeFieldDescription(package private) final BulkScorer
ConstantScoreQuery.ConstantBulkScorer.bulkScorer
private final BulkScorer
TimeLimitingBulkScorer.in
private final BulkScorer
ReqExclBulkScorer.req
final BulkScorer
DisjunctionMaxBulkScorer.BulkScorerAndNext.scorer
Methods in org.apache.lucene.search that return BulkScorerModifier and TypeMethodDescription(package private) BulkScorer
BooleanScorerSupplier.booleanScorer()
BooleanScorerSupplier.bulkScorer()
ScorerSupplier.bulkScorer()
Optional method: Get a scorer that is optimized for bulk-scoring.final BulkScorer
Weight.bulkScorer
(LeafReaderContext context) Helper method that delegates toWeight.scorerSupplier(LeafReaderContext)
.(package private) static BulkScorer
BooleanScorerSupplier.disableScoring
(BulkScorer scorer) (package private) BulkScorer
BooleanScorerSupplier.filteredOptionalBulkScorer()
(package private) BulkScorer
BooleanScorerSupplier.optionalBulkScorer()
private BulkScorer
BooleanScorerSupplier.requiredBulkScorer()
Methods in org.apache.lucene.search with parameters of type BulkScorerModifier and TypeMethodDescriptionprotected LRUQueryCache.CacheAndCount
LRUQueryCache.cacheImpl
(BulkScorer scorer, int maxDoc) Default cache implementation: usesRoaringDocIdSet
for sets that have a density < 1% and aBitDocIdSet
over aFixedBitSet
otherwise.private static LRUQueryCache.CacheAndCount
LRUQueryCache.cacheIntoBitSet
(BulkScorer scorer, int maxDoc) private static LRUQueryCache.CacheAndCount
LRUQueryCache.cacheIntoRoaringDocIdSet
(BulkScorer scorer, int maxDoc) (package private) static BulkScorer
BooleanScorerSupplier.disableScoring
(BulkScorer scorer) Constructors in org.apache.lucene.search with parameters of type BulkScorerModifierConstructorDescription(package private)
BulkScorerAndNext
(BulkScorer scorer) ConstantBulkScorer
(BulkScorer bulkScorer, Weight weight, float theScore) (package private)
ReqExclBulkScorer
(BulkScorer req, DocIdSetIterator excl) (package private)
ReqExclBulkScorer
(BulkScorer req, Scorer excl) (package private)
ReqExclBulkScorer
(BulkScorer req, TwoPhaseIterator excl) TimeLimitingBulkScorer
(BulkScorer bulkScorer, QueryTimeout queryTimeout) Create a TimeLimitingBulkScorer wrapper over anotherBulkScorer
with a specified timeout.Constructor parameters in org.apache.lucene.search with type arguments of type BulkScorerModifierConstructorDescription(package private)
DisjunctionMaxBulkScorer
(List<BulkScorer> scorers) -
Uses of BulkScorer in org.apache.lucene.search.join
Subclasses of BulkScorer in org.apache.lucene.search.joinFields in org.apache.lucene.search.join declared as BulkScorerModifier and TypeFieldDescriptionprivate final BulkScorer
ToParentBlockJoinQuery.BlockJoinBulkScorer.childBulkScorer
Constructors in org.apache.lucene.search.join with parameters of type BulkScorerModifierConstructorDescriptionBlockJoinBulkScorer
(BulkScorer childBulkScorer, BitSet parents, ScoreMode scoreMode) -
Uses of BulkScorer in org.apache.lucene.search.suggest.document
Subclasses of BulkScorer in org.apache.lucene.search.suggest.documentModifier and TypeClassDescriptionclass
Expert: Responsible for executing the query against an appropriate suggester and collecting the results via a collector.