TermStats

data class TermStats(val docFreq: Int, val totalTermFreq: Long)

Holder for per-term statistics.

Parameters

docFreq

How many documents have at least one occurrence of this term.

totalTermFreq

Total number of times this term occurs across all documents in the field.

Constructors

Link copied to clipboard
constructor(docFreq: Int, totalTermFreq: Long)

Properties

Link copied to clipboard
Link copied to clipboard