kinetex - v1.0.0-rc.1
    Preparing search index...

    Interface CacheRequestConfig

    Per-request cache configuration.

    interface CacheRequestConfig {
        enabled?: boolean;
        ttlMs?: number;
        tags?: string[];
        forceRefresh?: boolean;
    }
    Index

    Properties

    enabled?: boolean

    If false, bypass cache entirely. Default: true

    ttlMs?: number

    Override TTL in ms for this specific request.

    tags?: string[]

    Cache tags for targeted invalidation.

    forceRefresh?: boolean

    If true, force a fresh fetch and update the cache.