Interface BM25Stats

Index statistics for monitoring and debugging.

Interface

BM25Stats

interface BM25Stats {
    documentCount: number;
    termCount: number;
    avgDocLength: number;
}

Properties

documentCount: number

Total documents in the index.

termCount: number

Total unique terms across all documents.

avgDocLength: number

Average document length in tokens.