MCPcopy Create free account
hub / github.com/MicrosoftDocs/mcp / FileLearnSessionCacheStoreOptions

Interface FileLearnSessionCacheStoreOptions

cli/src/mcp/cache.ts:30–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30interface FileLearnSessionCacheStoreOptions {
31 cacheFilePath?: string;
32 ttlMs?: number;
33 now?: () => number;
34}
35
36export function createFileLearnSessionCacheStore(options: FileLearnSessionCacheStoreOptions = {}): LearnSessionCacheStore {
37 return new FileLearnSessionCacheStore(options);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected