Loom Engine - v3.1.1
    Preparing search index...

    Interface LRUCacheOptions<V>

    interface LRUCacheOptions<V> {
        capacity?: number;
        onEvict?: (key: string, value: V) => void;
    }

    Type Parameters

    • V
    Index

    Properties

    Properties

    capacity?: number
    onEvict?: (key: string, value: V) => void