Class ScriptedSimilarity
- java.lang.Object
-
- org.apache.lucene.search.similarities.Similarity
-
- org.elasticsearch.index.similarity.ScriptedSimilarity
-
public final class ScriptedSimilarity extends Similarity
ASimilarityimplementation that allows scores to be scripted.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classScriptedSimilarity.DocStatistics that are specific to a document.static classScriptedSimilarity.FieldStatistics that are specific to a given field.static classScriptedSimilarity.QueryScoring factors that come from the query.static classScriptedSimilarity.TermStatistics that are specific to a given term.-
Nested classes/interfaces inherited from class org.apache.lucene.search.similarities.Similarity
Similarity.SimScorer
-
-
Constructor Summary
Constructors Constructor Description ScriptedSimilarity(String weightScriptString, SimilarityWeightScript.Factory weightScriptFactory, String scriptString, SimilarityScript.Factory scriptFactory, boolean discountOverlaps)Sole constructor.
-
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).Similarity.SimScorerscorer(float boost, CollectionStatistics collectionStats, TermStatistics... termStats)Compute any collection-level weight (e.g.StringtoString()
-
-
-
Constructor Detail
-
ScriptedSimilarity
public ScriptedSimilarity(String weightScriptString, SimilarityWeightScript.Factory weightScriptFactory, String scriptString, SimilarityScript.Factory scriptFactory, boolean discountOverlaps)
Sole constructor.
-
-
Method Detail
-
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.
-
-