@s2-dev/streamstore - v0.18.1
    Preparing search index...

    Interface AppendSessionOptions

    Options that control client-side append backpressure and concurrency.

    These are applied by AppendSession; transports ignore them.

    interface AppendSessionOptions {
        maxInflightBatches?: number;
        maxInflightBytes?: number;
    }
    Index

    Properties

    maxInflightBatches?: number

    Maximum number of batches allowed in-flight before applying backpressure.

    maxInflightBytes?: number

    Aggregate size of records, as calculated by meteredBytes, to allow in-flight before applying backpressure (default: 10 MiB).