zibri
    Preparing search index...

    Interface for a cache service.

    interface CacheServiceInterface {
        caches: AnyCache[];
        invalidateTags: (tags: string[]) => void | Promise<void>;
    }

    Implemented by

    Index

    Properties

    caches: AnyCache[]

    All caches that have been registered.

    invalidateTags: (tags: string[]) => void | Promise<void>

    Invalidates the given tags through all caches.