ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Interface CacheMetadata

    Metadata about cached results including timestamp and version information. Helps determine if cached data is stale or needs to be refreshed.

    interface CacheMetadata {
        cachedAt: number;
        version: number;
        query: string;
        supplier: string;
        supplierModule: string;
        resultCount: number;
        limit: number;
    }
    Index

    Properties

    cachedAt: number

    When the data was cached

    version: number

    Version of the cache format — useful for cache invalidation

    query: string

    Original query that produced these results

    supplier: string

    Supplier display name that provided these results

    supplierModule: string

    Supplier module class name (e.g. "SupplierCarolina") that produced this entry

    resultCount: number

    Number of results in the cache

    limit: number

    Limit used to generate this cache