Class RedisCacheAdapter<TType>

To utilize the RedisCacheAdapter, you must install the "ioredis" package and supply a ISerde<string>, with adapter like SuperJsonSerdeAdapter .

IMPORT_PATH: "@daiso-tech/core/cache/adapters"

Type Parameters

  • TType

Implements

Constructors

Methods

  • The increment method increments the given key with given value. Returns true if the key where incremented otherwise false will be returned. If values is not defined then it will increment the key with 1. An error will thrown if the key is not a number.

    Parameters

    • key: string
    • value: number

    Returns Promise<boolean>