Uses of Class
org.apache.lucene.search.Scorer
-
Packages that use Scorer Package Description org.apache.lucene.document The logical representation of aDocumentfor indexing and searching.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.queries.function Queries that compute score based upon a function.org.apache.lucene.queries.function.valuesource A variety of functions to use with FunctionQuery.org.apache.lucene.queries.intervals Intervals queriesorg.apache.lucene.queries.payloads The payloads package provides Query mechanisms for finding and using payloads.org.apache.lucene.search Code to search indices.org.apache.lucene.search.join Support for index-time and query-time joins.org.apache.lucene.search.spans The calculus of spans.org.apache.lucene.search.suggest.document Support for document suggestion -
-
Uses of Scorer in org.apache.lucene.document
Subclasses of Scorer in org.apache.lucene.document Modifier and Type Class Description private classLatLonPointDistanceFeatureQuery.DistanceScorerprivate classLongDistanceFeatureQuery.DistanceScorerMethods in org.apache.lucene.document that return Scorer Modifier and Type Method Description private ScorerSpatialQuery.RelationScorerSupplier. getContainsDenseScorer(LeafReader reader, Weight weight, float boost, ScoreMode scoreMode)private ScorerSpatialQuery.RelationScorerSupplier. getDenseScorer(LeafReader reader, Weight weight, float boost, ScoreMode scoreMode)Scorer used for WITHIN and DISJOINTprotected ScorerSpatialQuery.RelationScorerSupplier. getScorer(LeafReader reader, Weight weight, float boost, ScoreMode scoreMode)private ScorerSpatialQuery.RelationScorerSupplier. getSparseScorer(LeafReader reader, Weight weight, float boost, ScoreMode scoreMode)Scorer used for INTERSECTS and single value points -
Uses of Scorer in org.apache.lucene.index
Methods in org.apache.lucene.index that return Scorer Modifier and Type Method Description private static ScorerSoftDeletesRetentionMergePolicy. getScorer(Query query, CodecReader reader) -
Uses of Scorer in org.apache.lucene.queries.function
Subclasses of Scorer in org.apache.lucene.queries.function Modifier and Type Class Description protected classFunctionQuery.AllScorerclassValueSourceScorerScorerwhich returns the result ofFunctionValues.floatVal(int)as the score for a document, and which filters out documents that don't matchValueSourceScorer.matches(int).Methods in org.apache.lucene.queries.function that return Scorer Modifier and Type Method Description ScorerFunctionQuery.FunctionWeight. scorer(LeafReaderContext context)ScorerFunctionScoreQuery.FunctionScoreWeight. scorer(LeafReaderContext context) -
Uses of Scorer in org.apache.lucene.queries.function.valuesource
Fields in org.apache.lucene.queries.function.valuesource declared as Scorer Modifier and Type Field Description (package private) ScorerQueryDocValues. scorer -
Uses of Scorer in org.apache.lucene.queries.intervals
Subclasses of Scorer in org.apache.lucene.queries.intervals Modifier and Type Class Description (package private) classIntervalScorerMethods in org.apache.lucene.queries.intervals that return Scorer Modifier and Type Method Description ScorerIntervalQuery.IntervalWeight. scorer(LeafReaderContext context) -
Uses of Scorer in org.apache.lucene.queries.payloads
Subclasses of Scorer in org.apache.lucene.queries.payloads Modifier and Type Class Description private classPayloadScoreQuery.PayloadSpanScorer -
Uses of Scorer in org.apache.lucene.search
Subclasses of Scorer in org.apache.lucene.search Modifier and Type Class Description (package private) classBlockMaxConjunctionScorerScorer for conjunctions that checks the maximum scores of each clause in order to potentially skip over blocks that can't have competitive matches.private static classBM25FQuery.BM25FScorer(package private) classConjunctionScorerScorer for conjunctions, sets of queries, all of which are required.classConstantScoreScorerA constant-scoringScorer.(package private) classCoveringScorerAScorerwhose number of matches is per-document.(package private) classDisjunctionMaxScorerThe Scorer for DisjunctionMaxQuery.(package private) classDisjunctionScorerBase class for Scorers that score disjunctions.(package private) classDisjunctionSumScorerA Scorer for OR like queries, counterpart ofConjunctionScorer.classFilterScorerAFilterScorercontains anotherScorer, which it uses as its basic source of data, possibly transforming the data along the way or providing additional functionality.(package private) classMinShouldMatchSumScorer(package private) classPhraseScorer(package private) classReqExclScorerA Scorer for queries with a required subscorer and an excluding (prohibited) subScorer.(package private) classReqOptSumScorerA Scorer for queries with a required part and an optional part.private static classSynonymQuery.FreqBoostTermScorerprivate static classSynonymQuery.SynonymScorer(package private) classTermAutomatonScorer(package private) classTermScorerExpert: AScorerfor documents matching aTerm.(package private) classWANDScorerThis implements the WAND (Weak AND) algorithm for dynamic pruning described in "Efficient Query Evaluation using a Two-Level Retrieval Process" by Broder, Carmel, Herscovici, Soffer and Zien.Fields in org.apache.lucene.search declared as Scorer Modifier and Type Field Description protected ScorerFilterScorer. inprivate ScorerReqOptSumScorer. optScorerprivate ScorerReqExclScorer. reqScorerprivate ScorerReqOptSumScorer. reqScorerprotected ScorerBlockMaxDISI. scorerScorerDisiWrapper. scorerprivate ScorerWeight.DefaultBulkScorer. scorer(package private) Scorer[]BlockMaxConjunctionScorer. scorers(package private) Scorer[]ConjunctionScorer. scorersprivate Scorer[]DisjunctionScoreBlockBoundaryPropagator. scorersprivate Scorer[]MaxScoreSumPropagator. scorersFields in org.apache.lucene.search with type parameters of type Scorer Modifier and Type Field Description private static java.util.Comparator<Scorer>DisjunctionScoreBlockBoundaryPropagator. MAX_SCORE_COMPARATOR(package private) java.util.Collection<Scorer>ConjunctionScorer. requiredprivate java.util.List<Scorer>DisjunctionMaxScorer. subScorersMethods in org.apache.lucene.search that return Scorer Modifier and Type Method Description private ScorerBoolean2ScorerSupplier. excl(Scorer main, java.util.Collection<ScorerSupplier> prohibited, long leadCost)ScorerBoolean2ScorerSupplier. get(long leadCost)abstract ScorerScorerSupplier. get(long leadCost)Get theScorer.private ScorerBoolean2ScorerSupplier. getInternal(long leadCost)private ScorerBoolean2ScorerSupplier. opt(java.util.Collection<ScorerSupplier> optional, int minShouldMatch, ScoreMode scoreMode, long leadCost)private ScorerBoolean2ScorerSupplier. req(java.util.Collection<ScorerSupplier> requiredNoScoring, java.util.Collection<ScorerSupplier> requiredScoring, long leadCost)Create a new scorer for the given required clauses.ScorerBM25FQuery.BM25FWeight. scorer(LeafReaderContext context)ScorerBooleanWeight. scorer(LeafReaderContext context)ScorerCoveringQuery.CoveringWeight. scorer(LeafReaderContext context)ScorerDisjunctionMaxQuery.DisjunctionMaxWeight. scorer(LeafReaderContext context)Create the scorer used to score our associated DisjunctionMaxQueryScorerFilterWeight. scorer(LeafReaderContext context)ScorerLRUQueryCache.CachingWrapperWeight. scorer(LeafReaderContext context)ScorerPhraseWeight. scorer(LeafReaderContext context)ScorerSynonymQuery.SynonymWeight. scorer(LeafReaderContext context)ScorerTermAutomatonQuery.TermAutomatonWeight. scorer(LeafReaderContext context)ScorerTermQuery.TermWeight. scorer(LeafReaderContext context)abstract ScorerWeight. scorer(LeafReaderContext context)Returns aScorerwhich can iterate in order over all matching documents and assign them a score.Methods in org.apache.lucene.search with parameters of type Scorer Modifier and Type Method Description private static voidConjunctionDISI. addScorer(Scorer scorer, java.util.List<DocIdSetIterator> allIterators, java.util.List<TwoPhaseIterator> twoPhaseIterators)Adds the scorer, possibly splitting up into two phases or collapsing if it is another conjunctionprivate ScorerBoolean2ScorerSupplier. excl(Scorer main, java.util.Collection<ScorerSupplier> prohibited, long leadCost)Method parameters in org.apache.lucene.search with type arguments of type Scorer Modifier and Type Method Description static DocIdSetIteratorConjunctionDISI. intersectScorers(java.util.Collection<Scorer> scorers)Create a conjunction over the providedScorers.Constructors in org.apache.lucene.search with parameters of type Scorer Constructor Description BlockMaxDISI(DocIdSetIterator iterator, Scorer scorer)DefaultBulkScorer(Scorer scorer)Sole constructor.DisiWrapper(Scorer scorer)DisiWrapperFreq(Scorer scorer, float boost)FilterScorer(Scorer in)Create a new FilterScorerFilterScorer(Scorer in, Weight weight)Create a new FilterScorer with a specific weightReqExclScorer(Scorer reqScorer, Scorer exclScorer)Construct aReqExclScorer.ReqOptSumScorer(Scorer reqScorer, Scorer optScorer, ScoreMode scoreMode)Construct aReqOptScorer.WeightedDisiWrapper(Scorer scorer, float weight)Constructor parameters in org.apache.lucene.search with type arguments of type Scorer Constructor Description BlockMaxConjunctionScorer(Weight weight, java.util.Collection<Scorer> scorersList)Create a newBlockMaxConjunctionScorerfrom scoring clauses.ConjunctionScorer(Weight weight, java.util.Collection<Scorer> required, java.util.Collection<Scorer> scorers)CoveringScorer(Weight weight, java.util.Collection<Scorer> scorers, LongValues minMatchValues, int maxDoc)DisjunctionMaxScorer(Weight weight, float tieBreakerMultiplier, java.util.List<Scorer> subScorers, ScoreMode scoreMode)Creates a new instance of DisjunctionMaxScorerDisjunctionScoreBlockBoundaryPropagator(java.util.Collection<Scorer> scorers)DisjunctionScorer(Weight weight, java.util.List<Scorer> subScorers, ScoreMode scoreMode)DisjunctionSumScorer(Weight weight, java.util.List<Scorer> subScorers, ScoreMode scoreMode)Construct aDisjunctionScorer.MaxScoreSumPropagator(java.util.Collection<? extends Scorer> scorerList)MinShouldMatchSumScorer(Weight weight, java.util.Collection<Scorer> scorers, int minShouldMatch)WANDScorer(Weight weight, java.util.Collection<Scorer> scorers, int minShouldMatch) -
Uses of Scorer in org.apache.lucene.search.join
Subclasses of Scorer in org.apache.lucene.search.join Modifier and Type Class Description (package private) classBaseGlobalOrdinalScorer(package private) static classGlobalOrdinalsQuery.OrdinalMapScorer(package private) static classGlobalOrdinalsQuery.SegmentOrdinalScorer(package private) static classGlobalOrdinalsWithScoreQuery.OrdinalMapScorer(package private) static classGlobalOrdinalsWithScoreQuery.SegmentOrdinalScorer(package private) classTermsIncludingScoreQuery.MVInOrderScorer(package private) classTermsIncludingScoreQuery.SVInOrderScorer(package private) static classToChildBlockJoinQuery.ToChildBlockJoinScorer(package private) static classToParentBlockJoinQuery.BlockJoinScorerFields in org.apache.lucene.search.join declared as Scorer Modifier and Type Field Description private ScorerToParentBlockJoinQuery.BlockJoinScorer. childScorerprivate ScorerToChildBlockJoinQuery.ToChildBlockJoinScorer. parentScorerMethods in org.apache.lucene.search.join that return Scorer Modifier and Type Method Description ScorerGlobalOrdinalsQuery.W. scorer(LeafReaderContext context)ScorerGlobalOrdinalsWithScoreQuery.W. scorer(LeafReaderContext context)ScorerToChildBlockJoinQuery.ToChildBlockJoinWeight. scorer(LeafReaderContext readerContext)ScorerToParentBlockJoinQuery.BlockJoinWeight. scorer(LeafReaderContext context)Constructors in org.apache.lucene.search.join with parameters of type Scorer Constructor Description BlockJoinScorer(Weight weight, Scorer childScorer, BitSet parentBits, ScoreMode scoreMode)ToChildBlockJoinScorer(Weight weight, Scorer parentScorer, BitSet parentBits, boolean doScores) -
Uses of Scorer in org.apache.lucene.search.spans
Subclasses of Scorer in org.apache.lucene.search.spans Modifier and Type Class Description classSpanScorer -
Uses of Scorer in org.apache.lucene.search.suggest.document
Methods in org.apache.lucene.search.suggest.document that return Scorer Modifier and Type Method Description ScorerCompletionWeight. scorer(LeafReaderContext context)
-