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;} Copy
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;}
Per-algorithm caches mapping original titles to normalized forms
Timestamp when cache was last updated
Schema version for future migrations
Title normalization cache storing per-algorithm normalized forms. Maps original titles to their normalized versions for each algorithm.
Source