A11 TypeScript API - v0.2.1
    Preparing search index...

    Interface ChunkStoreWriterOptions

    Control sequence assignment, batching, and producer backpressure.

    interface ChunkStoreWriterOptions {
        maxChunksToWriteAtOnce?: number;
        numChunksToBuffer?: number | null;
        offset?: number;
        stickyMimetype?: boolean;
    }
    Index
    maxChunksToWriteAtOnce?: number

    Maximum fragments committed in one store batch.

    numChunksToBuffer?: number | null

    Outstanding chunk limit; null admits without a queue bound.

    offset?: number

    First automatically assigned sequence number.

    stickyMimetype?: boolean

    Omit repeated MIME types on contiguous chunks to reduce wire size.