@eagleoutice/flowr - v2.13.14
    Preparing search index...

    Interface SigDbCounts

    What the signature database mounted on the benchmarking machine carries, counted once per run. undefined when no database is mounted. Bundles are the distinct shards of the discovered manifests (a shard a second manifest ships again is counted once), and a kind is a shard's temporal tier.

    interface SigDbCounts {
        base?: SigDbBaseCounts;
        bundles: number;
        bundlesByKind: Record<string, number>;
        functions: number;
        functionsByKind: Record<string, number>;
        packages: number;
        packageVersions: number;
        size: number;
        sizeByKind: Record<string, number>;
        sizeOfDictionaries: number;
        sizeOfManifests: number;
    }
    Index
    bundles: number

    distinct shards over all discovered bundles

    bundlesByKind: Record<string, number>

    how many bundles each kind contributes, e.g. latest only or full history

    functions: number

    function records the bundles store, summed over the bundles

    functionsByKind: Record<string, number>

    function records per kind, a partition: every record belongs to exactly one bundle

    packages: number

    distinct package names the database describes

    packageVersions: number

    package versions the bundles store, summed (a kind-wise split would overlap, so there is none)

    size: number

    bytes of everything the database occupies

    sizeByKind: Record<string, number>

    bytes the bundles of each kind occupy on disk, in the codec this runtime reads

    sizeOfDictionaries: number

    bytes of the shared string dictionaries

    sizeOfManifests: number

    bytes of the manifests themselves