Uses of Class
org.apache.lucene.search.BulkScorer
-
Packages that use BulkScorer Package Description 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.search
Subclasses of BulkScorer in org.apache.lucene.search Modifier and Type Class Description (package private) classBooleanScorerBulkScorerthat is used for pure disjunctions and disjunctions that have low values ofBooleanQuery.Builder.setMinimumNumberShouldMatch(int)and dense clauses.protected static classConstantScoreQuery.ConstantBulkScorerWe return this as ourBulkScorerso that if the CSQ wraps a query with its own optimized top-level scorer (e.g.(package private) classReqExclBulkScorerprotected static classWeight.DefaultBulkScorerJust 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) BulkScorerConstantScoreQuery.ConstantBulkScorer. bulkScorerprivate BulkScorerReqExclBulkScorer. req(package private) BulkScorerBooleanScorer.BulkScorerAndDoc. scorerMethods in org.apache.lucene.search that return BulkScorer Modifier and Type Method Description (package private) BulkScorerBooleanWeight. booleanScorer(LeafReaderContext context)Try to build a boolean scorer for this weight.BulkScorerBooleanWeight. bulkScorer(LeafReaderContext context)BulkScorerLRUQueryCache.CachingWrapperWeight. bulkScorer(LeafReaderContext context)BulkScorerWeight. bulkScorer(LeafReaderContext context)Optional method, to return aBulkScorerto score the query and send hits to aCollector.(package private) static BulkScorerBooleanWeight. disableScoring(BulkScorer scorer)(package private) BulkScorerBooleanWeight. optionalBulkScorer(LeafReaderContext context)private BulkScorerBooleanWeight. requiredBulkScorer(LeafReaderContext context)Methods in org.apache.lucene.search with parameters of type BulkScorer Modifier and Type Method Description protected DocIdSetLRUQueryCache. cacheImpl(BulkScorer scorer, int maxDoc)Default cache implementation: usesRoaringDocIdSetfor sets that have a density < 1% and aBitDocIdSetover aFixedBitSetotherwise.private static DocIdSetLRUQueryCache. cacheIntoBitSet(BulkScorer scorer, int maxDoc)private static DocIdSetLRUQueryCache. cacheIntoRoaringDocIdSet(BulkScorer scorer, int maxDoc)(package private) static BulkScorerBooleanWeight. disableScoring(BulkScorer scorer)Method parameters in org.apache.lucene.search with type arguments of type BulkScorer Modifier and Type Method Description private static longBooleanScorer. 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 classCompletionScorerExpert: 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 BulkScorerCompletionWeight. bulkScorer(LeafReaderContext context)
-