Backstage
    Preparing search index...

    A pre-configured, storage agnostic cache service suitable for use by Backstage plugins.

    See the service documentation for more details.

    interface CacheService {
        delete(key: string): Promise<void>;
        get<TValue extends JsonValue>(key: string): Promise<TValue | undefined>;
        set(
            key: string,
            value: JsonValue,
            options?: CacheServiceSetOptions,
        ): Promise<void>;
        withOptions(options: CacheServiceOptions): CacheService;
    }
    Index

    Methods