export interface CacheConfiguration {
    driver?: "memory" | "redis" | "memcached";
    ttl?: number;
    redisConfig?: {
        host: string;
        port: number;
        password?: string;
    };
    memcachedConfig?: {
        servers: string[];
        options?: any;
    };
    clearOnStartup?: boolean;
}
