Member Junction
    Preparing search index...

    Interface TelemetryCacheParams

    Telemetry params for Cache operations. Tracks cache hits, misses, and validation.

    interface TelemetryCacheParams {
        cacheType: "local" | "server";
        entityName?: string;
        fingerprint?: string;
        operation: CacheOperationType;
        status?: CacheStatusType;
    }
    Index

    Properties

    cacheType: "local" | "server"

    Type of cache (local or server)

    entityName?: string

    Entity name (if applicable)

    fingerprint?: string

    Cache fingerprint for identification

    Cache operation being performed

    Result status of the cache operation