Uses of Class
org.apache.lucene.search.BulkScorer
-
Packages that use BulkScorer Package Description org.apache.lucene.sandbox.search This package contains a flexible graph-based proximity query, TermAutomatonQuery, and geospatial queries.org.apache.lucene.search Code to search indices.org.apache.lucene.search.suggest.document Support for document suggestion -
-
Uses of BulkScorer in org.apache.lucene.sandbox.search
Methods in org.apache.lucene.sandbox.search that return BulkScorer Modifier and Type Method Description BulkScorer
QueryProfilerWeight. bulkScorer(LeafReaderContext context)
-
Uses of BulkScorer in org.apache.lucene.search
Subclasses of BulkScorer in org.apache.lucene.search Modifier and Type Class Description (package private) class
BooleanScorer
BulkScorer
that is used for pure disjunctions and disjunctions that have low values ofBooleanQuery.Builder.setMinimumNumberShouldMatch(int)
and dense clauses.protected static class
ConstantScoreQuery.ConstantBulkScorer
We return this as ourBulkScorer
so that if the CSQ wraps a query with its own optimized top-level scorer (e.g.(package private) class
ReqExclBulkScorer
protected static class
Weight.DefaultBulkScorer
Just wraps a Scorer and performs top scoring using it.Fields in org.apache.lucene.search declared as BulkScorer Modifier and Type Field Description (package private) BulkScorer
ConstantScoreQuery.ConstantBulkScorer. bulkScorer
private BulkScorer
ReqExclBulkScorer. req
(package private) BulkScorer
BooleanScorer.BulkScorerAndDoc. scorer
Methods in org.apache.lucene.search that return BulkScorer Modifier and Type Method Description (package private) BulkScorer
BooleanWeight. booleanScorer(LeafReaderContext context)
Try to build a boolean scorer for this weight.BulkScorer
BooleanWeight. bulkScorer(LeafReaderContext context)
BulkScorer
IndriAndWeight. bulkScorer(LeafReaderContext context)
BulkScorer
LRUQueryCache.CachingWrapperWeight. bulkScorer(LeafReaderContext context)
BulkScorer
Weight. bulkScorer(LeafReaderContext context)
Optional method, to return aBulkScorer
to score the query and send hits to aCollector
.(package private) static BulkScorer
BooleanWeight. disableScoring(BulkScorer scorer)
(package private) BulkScorer
BooleanWeight. optionalBulkScorer(LeafReaderContext context)
private BulkScorer
BooleanWeight. requiredBulkScorer(LeafReaderContext context)
Methods in org.apache.lucene.search with parameters of type BulkScorer Modifier and Type Method Description protected 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
BooleanWeight. disableScoring(BulkScorer scorer)
Method parameters in org.apache.lucene.search with type arguments of type BulkScorer Modifier and Type Method Description private static long
BooleanScorer. cost(java.util.Collection<BulkScorer> scorers, int minShouldMatch)
Constructors in org.apache.lucene.search with parameters of type BulkScorer Constructor Description BulkScorerAndDoc(BulkScorer scorer)
ConstantBulkScorer(BulkScorer bulkScorer, Weight weight, float theScore)
ReqExclBulkScorer(BulkScorer req, DocIdSetIterator excl)
Constructor parameters in org.apache.lucene.search with type arguments of type BulkScorer Constructor Description BooleanScorer(BooleanWeight weight, java.util.Collection<BulkScorer> scorers, int minShouldMatch, boolean needsScores)
-
Uses of BulkScorer in org.apache.lucene.search.suggest.document
Subclasses of BulkScorer in org.apache.lucene.search.suggest.document Modifier and Type Class Description class
CompletionScorer
Expert: Responsible for executing the query against an appropriate suggester and collecting the results via a collector.Methods in org.apache.lucene.search.suggest.document that return BulkScorer Modifier and Type Method Description BulkScorer
CompletionWeight. bulkScorer(LeafReaderContext context)
-