gluon
    Preparing search index...

    Class BaseCacheManager<T>

    The base cache manager for all cache managers.

    Type Parameters

    • T

    Hierarchy (View Summary)

    Implements

    • BaseCacheManager<T>
    Index

    Constructors

    • Creates a cache manager.

      Type Parameters

      • T

      Parameters

      • client: Client

        The client instance.

      • options: { structureType: StaticManagerType<T> }

        The options for the cache manager.

        • structureType: StaticManagerType<T>

          The structure type for the cache manager.

      Returns BaseCacheManager<T>

    Properties

    rules: GluonCacheRuleSetStructure<any> = {}

    Accessors

    Methods

    • The callback for expiring buckets.

      Returns { i: StructureIdentifiers }

    • Calls all the custom fetches.

      Parameters

      • id: string

        The ID to fetch.

      Returns Promise<null | T>

    • Calls the rules on a value.

      Parameters

      • value: unknown

        The value to call the rules on.

      Returns void

    • Adds a key to the expiry bucket.

      Parameters

      • key: string

        The key to add to the expiry bucket.

      • expiry: number

        The expiry time in seconds.

      Returns void

    • Deletes a key from the cache.

      Parameters

      • key: string

        The key to delete.

      Returns boolean

      Whether the key was deleted or not.

    • Fetches a value from the rules cache.

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | T>

      The fetched value.

    • Fetches a value from the cache or from the rules cache.

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | T>

      The fetched value.

    • Parameters

      • key: string

      Returns null | NonNullable<T>

    • Calls a function on each item in the cache.

      Parameters

      • callbackfn: unknown

      Returns void

    • Gets a value from the cache.

      Parameters

      • key: string

        The key to get.

      Returns null | NonNullable<T>

      The value from the cache.

    • Checks if a key exists in the cache.

      Parameters

      • key: string

        The key to check.

      Returns boolean

      Whether the key exists or not.

    • Parameters

      • callbackfn: (value: [string, T], index: number, array: [string, T][]) => unknown

      Returns T[]

    • Sets a value in the cache.

      Parameters

      • key: string

        The key to set.

      • value: T

        The value to set.

      • expiry: number = 0

        The expiry time in seconds.

      Returns void

      The value that was set.