Pike LSP TypeScript API - v0.1.0-alpha.20
    Preparing search index...

    Interface AnalyzePerformance

    Performance timing metadata for analyze operation.

    interface AnalyzePerformance {
        cache_hit?: boolean;
        cache_key?: string;
        compilation_ms?: number;
        pike_total_ms: number;
        tokenization_ms?: number;
    }
    Index

    Properties

    cache_hit?: boolean

    Whether the compilation cache was hit

    cache_key?: string

    Cache key used for this request

    compilation_ms?: number

    Time spent compiling code (if introspection requested)

    pike_total_ms: number

    Total Pike processing time in milliseconds

    tokenization_ms?: number

    Time spent tokenizing code (if tokenization requested)