Uses of Class
org.apache.lucene.search.BulkScorer
-
Packages that use BulkScorer Package Description org.apache.lucene.search Code to search indices. -
-
Uses of BulkScorer in org.apache.lucene.search
Subclasses of BulkScorer in org.apache.lucene.search Modifier and Type Class Description 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.protected static class
Weight.DefaultBulkScorer
Just wraps a Scorer and performs top scoring using it.Methods in org.apache.lucene.search that return BulkScorer Modifier and Type Method Description BulkScorer
IndriAndWeight. bulkScorer(LeafReaderContext context)
BulkScorer
Weight. bulkScorer(LeafReaderContext context)
Optional method, to return aBulkScorer
to score the query and send hits to aCollector
.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.Constructors in org.apache.lucene.search with parameters of type BulkScorer Constructor Description ConstantBulkScorer(BulkScorer bulkScorer, Weight weight, float theScore)
-