File size: 481 Bytes
c09f67c | 1 2 3 4 5 6 7 8 9 10 11 12 | import type { ApiKey } from "@midday/db/queries";
import { RedisCache } from "./redis-client";
// Redis-based cache for API keys shared across all server instances
const cache = new RedisCache("api-key", 30 * 60); // 30 minutes TTL
export const apiKeyCache = {
get: (key: string): Promise<ApiKey | undefined> => cache.get<ApiKey>(key),
set: (key: string, value: ApiKey): Promise<void> => cache.set(key, value),
delete: (key: string): Promise<void> => cache.delete(key),
};
|