@btc-stamps/tx-builder - v0.1.7
    Preparing search index...

    Interface ChunkingStrategy

    interface ChunkingStrategy {
        algorithm:
            | "fixed_size"
            | "content_aware"
            | "entropy_based"
            | "pattern_aware";
        chunks: OptimizedChunk[];
        efficiency: number;
        overhead: number;
        totalSize: number;
    }
    Index

    Properties

    algorithm: "fixed_size" | "content_aware" | "entropy_based" | "pattern_aware"

    Chunking algorithm used

    chunks: OptimizedChunk[]

    Optimized data chunks

    efficiency: number

    Efficiency score (0-1)

    overhead: number

    Overhead from chunking metadata

    totalSize: number

    Total size after chunking