@pwngh/economy-lab
    Preparing search index...

    Interface SessionOptions

    Session tuning. The batch and chunk defaults are sized to the engines' contention profile; the one option correctness rides on is reservations — every session in the process shares one registry, or its accept screens race each other.

    interface SessionOptions {
        chunkWidth?: number;
        maxBatch?: number;
        reservations?: Reservations;
    }
    Index
    chunkWidth?: number

    Max participant accounts per settlement chunk (the lock-width bound). Default 16.

    maxBatch?: number

    Accepted movements per journal batch; the batch commits as one insert. Default 64.

    reservations?: Reservations

    The shared cross-session registry; a private one still guards within this session.