Class Similarity

    • Constructor Detail

      • Similarity

        public Similarity()
        Sole constructor. (For invocation by subclass constructors, typically implicit.)
    • Method Detail

      • computeNorm

        public abstract long computeNorm​(FieldInvertState state)
        Computes the normalization value for a field, given the accumulated state of term processing for this field (see FieldInvertState).

        Matches in longer fields are less precise, so implementations of this method usually set smaller values when state.getLength() is large, and larger values when state.getLength() is small.

        Parameters:
        state - current processing state for this field
        Returns:
        computed norm value
        WARNING: This API is experimental and might change in incompatible ways in the next release.
      • computeWeight

        public abstract Similarity.SimWeight computeWeight​(float boost,
                                                           CollectionStatistics collectionStats,
                                                           TermStatistics... termStats)
        Compute any collection-level weight (e.g. IDF, average document length, etc) needed for scoring a query.
        Parameters:
        boost - a multiplicative factor to apply to the produces scores
        collectionStats - 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.