Interface TitleNormalizationCache

Title normalization cache storing per-algorithm normalized forms. Maps original titles to their normalized versions for each algorithm.

export interface TitleNormalizationCache {
/**
* Per-algorithm caches mapping original titles to normalized forms
*/
caches: {
[algorithm: string]: Record<string, string>;
};
/**
* Timestamp when cache was last updated
*/
lastUpdated: number;
/**
* Schema version for future migrations
*/
version: number;
}
interface TitleNormalizationCache {
    caches: { [algorithm: string]: Record<string, string> };
    lastUpdated: number;
    version: number;
}

Properties

caches: { [algorithm: string]: Record<string, string> }

Per-algorithm caches mapping original titles to normalized forms

lastUpdated: number

Timestamp when cache was last updated

version: number

Schema version for future migrations