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

    Interface CactusCacheOptions

    Configuration options for the Cactus client cache.

    interface CactusCacheOptions {
    /** Maximum number of items to store in the cache */
    max?: number;
    /** Time to live for cached items in milliseconds */
    ttl?: number;
    /** Whether to enable caching (default: true) */
    enabled?: boolean;
    }
    interface CactusCacheOptions {
        max?: number;
        ttl?: number;
        enabled?: boolean;
    }
    Index

    Properties

    Properties

    max?: number

    Maximum number of items to store in the cache

    ttl?: number

    Time to live for cached items in milliseconds

    enabled?: boolean

    Whether to enable caching (default: true)