data-cap
    Preparing search index...

    Interface CreateDataOptions

    Options for createData.

    interface CreateDataOptions {
        coordinator?: Coordinator;
        maxOperationHistory?: number;
    }
    Index
    coordinator?: Coordinator

    Overrides defaultCoordinator -- an explicit, isolated coordination domain (ADR 0027), e.g. per-tenant on a server.

    maxOperationHistory?: number

    Bounds how many distinct canonicalized-params entries are retained per operation in the reactive operations snapshot (an LRU cap -- an operation called with many different params over a session, e.g. search-as-you-type, would otherwise grow this unboundedly). Defaults to 50.