Logos DX
    Preparing search index...

    Interface MapCacheAdapterOptions

    Options for MapCacheAdapter.

    interface MapCacheAdapterOptions {
        cleanupInterval?: number;
        maxSize?: number;
        useWeakRef?: boolean;
    }
    Index

    Properties

    cleanupInterval?: number

    Background cleanup interval in ms. 0 to disable. Default: 60000

    maxSize?: number

    Maximum cache size. When exceeded, LRU items evicted. Default: 1000

    useWeakRef?: boolean

    Use WeakRef for object values (allows GC). Default: false