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

    Interface QueryConfigInput

    Query string normalization settings for cache key generation.

    include and exclude are mutually exclusive.

    interface QueryConfigInput {
        exclude?: string[];
        include?: string[];
        sort?: boolean;
    }
    Index

    Properties

    exclude?: string[]

    Query parameter names or glob patterns excluded from cache keys.

    include?: string[]

    Only these query parameter names are included in cache keys.

    undefined
    
    sort?: boolean

    Sorts query parameters before key generation for stable cache keys.

    true