export interface QueryCacheStore { getAsync(key: string): Promise; setAsync(key: string, value: T, ttlMs: number): Promise; deleteAsync(key: string): Promise; }