European Parliament MCP Server API - v1.3.10
    Preparing search index...

    Interface LifecycleCacheProjection

    Lifecycle-statistics cache projection exposed in the health response.

    Field Meaning
    state WARM (cached & fresh), STALE (cached but TTL elapsed), COLD (never warmed)
    ageMs Age of the cached model in ms; null when COLD
    corpusSize Number of procedures the cached model was built from; null when COLD
    lastRefreshErrorAt ISO-8601 timestamp of the last warmup-scheduler failure; null when none
    interface LifecycleCacheProjection {
        ageMs: number | null;
        corpusSize: number | null;
        lastRefreshErrorAt: string | null;
        state: LifecycleCacheState;
    }
    Index

    Properties

    ageMs: number | null
    corpusSize: number | null
    lastRefreshErrorAt: string | null