Class BooleanSimilarity
- java.lang.Object
-
- org.apache.lucene.search.similarities.Similarity
-
- org.apache.lucene.search.similarities.BooleanSimilarity
-
public class BooleanSimilarity extends Similarity
Simple similarity that gives terms a score that is equal to their query boost. This similarity is typically used with disabled norms since neither document statistics nor index statistics are used for scoring. That said, if norms are enabled, they will be computed the same way asSimilarityBaseandBM25Similaritywithdiscounted overlapsso that theSimilaritycan be changed after the index has been created.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.search.similarities.Similarity
Similarity.SimScorer, Similarity.SimWeight
-
-
Constructor Summary
Constructors Constructor Description BooleanSimilarity()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.SimWeightcomputeWeight(float boost, CollectionStatistics collectionStats, TermStatistics... termStats)Compute any collection-level weight (e.g.Similarity.SimScorersimScorer(Similarity.SimWeight weight, LeafReaderContext context)Creates a newSimilarity.SimScorerto score matching documents from a segment of the inverted index.
-
-
-
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.- Specified by:
computeNormin classSimilarity- Parameters:
state- current processing state for this field- Returns:
- computed norm value
-
computeWeight
public Similarity.SimWeight computeWeight(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:
computeWeightin 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.
-
simScorer
public Similarity.SimScorer simScorer(Similarity.SimWeight weight, LeafReaderContext context) throws IOException
Description copied from class:SimilarityCreates a newSimilarity.SimScorerto score matching documents from a segment of the inverted index.- Specified by:
simScorerin classSimilarity- Parameters:
weight- collection information fromSimilarity.computeWeight(float, CollectionStatistics, TermStatistics...)context- segment of the inverted index to be scored.- Returns:
- SloppySimScorer for scoring documents across
context - Throws:
IOException- if there is a low-level I/O error
-
-