BUPKIS
    Preparing search index...

    Interface BenchmarkConfig

    Configuration for valueToSchema benchmark generation.

    interface BenchmarkConfig {
        categories?: string[];
        complexityLevels: ComplexityLevel[];
        iterations: number;
        options?: Partial<ValueToSchemaOptions>[];
        sampleSize: number;
        timeout: number;
        warmupIterations: number;
    }
    Index

    Properties

    categories?: string[]

    Optional filter for input categories

    complexityLevels: ComplexityLevel[]

    Complexity levels to test

    iterations: number

    Number of benchmark iterations (1-10000)

    ValueToSchemaOptions combinations to test

    sampleSize: number

    Number of test data samples to generate (10-10000)

    timeout: number

    Benchmark timeout in milliseconds (1000-300000)

    warmupIterations: number

    Number of warmup iterations (1-100)