Class NonNegativeScoresSimilarity
- java.lang.Object
-
- org.apache.lucene.search.similarities.Similarity
-
- org.elasticsearch.index.similarity.NonNegativeScoresSimilarity
-
public final class NonNegativeScoresSimilarity extends Similarity
ASimilaritythat rejects negative scores. This class exists so that users get an error instead of silently corrupt top hits. It should be applied to any custom or scripted similarity.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.search.similarities.Similarity
Similarity.SimScorer
-
-
Constructor Summary
Constructors Constructor Description NonNegativeScoresSimilarity(Similarity in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longcomputeNorm(FieldInvertState state)Computes the normalization value for a field, given the accumulated state of term processing for this field (seeFieldInvertState).SimilaritygetDelegate()Similarity.SimScorerscorer(float boost, CollectionStatistics collectionStats, TermStatistics... termStats)Compute any collection-level weight (e.g.
-
-
-
Constructor Detail
-
NonNegativeScoresSimilarity
public NonNegativeScoresSimilarity(Similarity in)
-
-
Method Detail
-
getDelegate
public Similarity getDelegate()
-
computeNorm
public long computeNorm(FieldInvertState state)
Description copied from class:SimilarityComputes the normalization value for a field, given the accumulated state of term processing for this field (seeFieldInvertState).Matches in longer fields are less precise, so implementations of this method usually set smaller values when
state.getLength()is large, and larger values whenstate.getLength()is small.Note that for a given term-document frequency, greater unsigned norms must produce scores that are lower or equal, ie. for two encoded norms
n1andn2so thatLong.compareUnsigned(n1, n2) > 0thenSimScorer.score(freq, n1) <= SimScorer.score(freq, n2)for any legalfreq.0is not a legal norm, so1is the norm that produces the highest scores.- Specified by:
computeNormin classSimilarity- Parameters:
state- current processing state for this field- Returns:
- computed norm value
-
scorer
public Similarity.SimScorer scorer(float boost, CollectionStatistics collectionStats, TermStatistics... termStats)
Description copied from class:SimilarityCompute any collection-level weight (e.g. IDF, average document length, etc) needed for scoring a query.- Specified by:
scorerin classSimilarity- Parameters:
boost- a multiplicative factor to apply to the produces scorescollectionStats- collection-level statistics, such as the number of tokens in the collection.termStats- term-level statistics, such as the document frequency of a term across the collection.- Returns:
- SimWeight object with the information this Similarity needs to score a query.
-
-