@agrodt/astro-redis-cache-provider
    Preparing search index...

    Interface RedisCacheProviderOptions

    Configuration for the Redis cache provider.

    interface RedisCacheProviderOptions {
        ignoredVaryHeaders?: Iterable<string, any, any>;
        keyPrefix?: string;
        query?: QueryConfigInput;
        revalidateLockTtl?: number;
        url?: string | (() => string | undefined);
    }
    Index

    Properties

    ignoredVaryHeaders?: Iterable<string, any, any>

    Additional Vary header names to ignore during cache key matching. set-cookie is always ignored.

    []
    
    keyPrefix?: string

    Prefix used for all cache keys stored in Redis.

    "astro:cache"
    

    Query string normalization rules used when building cache keys.

    undefined
    
    revalidateLockTtl?: number

    Lock TTL in seconds for stale-while-revalidate background refresh.

    30
    
    url?: string | (() => string | undefined)

    Redis connection URL or runtime resolver for values unavailable at build time.

    undefined