@kimsungwhee/apple-docs-mcp
Version:
MCP server for Apple Developer Documentation - Search iOS/macOS/SwiftUI/UIKit docs, WWDC videos, Swift/Objective-C APIs & code examples in Claude, Cursor & AI assistants
22 lines • 571 B
TypeScript
/**
* Cache warming strategies for improved performance
*/
/**
* Warm up frequently accessed caches
*/
export declare function warmUpCaches(): Promise<void>;
/**
* Get cache warm-up status
*/
export declare function getCacheWarmUpStatus(): {
technologiesCacheSize: number;
updatesCacheSize: number;
overviewsCacheSize: number;
apiCacheSize: number;
totalCacheEntries: number;
};
/**
* Schedule periodic cache refresh
*/
export declare function schedulePeriodicCacheRefresh(intervalMs?: number): void;
//# sourceMappingURL=cache-warmer.d.ts.map