Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface VocabularyServiceStats

    Operational statistics for a running VocabularyService.

    const stats: VocabularyServiceStats = {
    loadedDomains: ['procurement', 'sales'],
    totalTerms: 142,
    cacheHits: 37,
    cacheMisses: 5,
    };
    interface VocabularyServiceStats {
        cacheHits: number;
        cacheMisses: number;
        loadedDomains: SAPDomain[];
        totalTerms: number;
    }
    Index

    Properties

    cacheHits: number

    Number of search cache hits since service creation.

    cacheMisses: number

    Number of search cache misses since service creation.

    loadedDomains: SAPDomain[]

    Domains that have been loaded into memory.

    totalTerms: number

    Total number of vocabulary terms across all loaded domains.