Type Alias ICacheBase<TType>

ICacheBase: {
    add(
        key: OneOrMore<string>,
        value: TType,
        ttl?: null | TimeSpan,
    ): LazyPromise<boolean>;
    clear(): LazyPromise<void>;
    decrement(
        key: OneOrMore<string>,
        value?: Extract<TType, number>,
    ): LazyPromise<boolean>;
    exists(key: OneOrMore<string>): LazyPromise<boolean>;
    get(key: OneOrMore<string>): LazyPromise<null | TType>;
    getAndRemove(key: OneOrMore<string>): LazyPromise<null | TType>;
    getOr(
        key: OneOrMore<string>,
        defaultValue: AsyncLazyable<NoneFunc<TType>>,
    ): LazyPromise<TType>;
    getOrAdd(
        key: OneOrMore<string>,
        valueToAdd: AsyncLazyable<NoneFunc<TType>>,
        ttl?: null | TimeSpan,
    ): LazyPromise<TType>;
    getOrFail(key: OneOrMore<string>): LazyPromise<TType>;
    increment(
        key: OneOrMore<string>,
        value?: Extract<TType, number>,
    ): LazyPromise<boolean>;
    missing(key: OneOrMore<string>): LazyPromise<boolean>;
    put(
        key: OneOrMore<string>,
        value: TType,
        ttl?: null | TimeSpan,
    ): LazyPromise<boolean>;
    remove(key: OneOrMore<string>): LazyPromise<boolean>;
    removeMany(
        keys: Iterable<OneOrMore<string>, any, any>,
    ): LazyPromise<boolean>;
    update(key: OneOrMore<string>, value: TType): LazyPromise<boolean>;
}

The ICacheBase contract defines a way for as key-value pairs independent of data storage.

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

Type Parameters

  • TType = unknown

Type declaration

  • add:function
    • The add method adds a key with given value when key doesn't exists.

      Parameters

      • key: OneOrMore<string>

        can be a string or an Iterable of strings. If it's an Iterable, it will be joined into a single string. Think of an Iterable as representing a path.

      • value: TType
      • Optionalttl: null | TimeSpan

        If null is passed, the item will not expire.

      Returns LazyPromise<boolean>

      true when key doesn't exists otherwise false will be returned.

  • clear:function
  • decrement:function
    • The decrement method decrements the given key with given value. An error will thrown if the key is not a number.

      Parameters

      • key: OneOrMore<string>

        can be a string or an Iterable of strings. If it's an Iterable, it will be joined into a single string. Think of an Iterable as representing a path.

      • Optionalvalue: Extract<TType, number>

        If not defined then it will be defaulted to 1.

      Returns LazyPromise<boolean>

      true if the key where decremented otherwise false will be returned.

  • exists:function
  • get:function
  • getAndRemove:function
    • The getAndRemove method returns the value when key is found otherwise null will be returned. The key will be removed after it is returned.

      Parameters

      • key: OneOrMore<string>

        can be a string or an Iterable of strings. If it's an Iterable, it will be joined into a single string. Think of an Iterable as representing a path.

      Returns LazyPromise<null | TType>

  • getOr:function
  • getOrAdd:function
  • getOrFail:function
  • increment:function
    • The increment method increments the given key with given value. An error will thrown if the key is not a number.

      Parameters

      • key: OneOrMore<string>

        can be a string or an Iterable of strings. If it's an Iterable, it will be joined into a single string. Think of an Iterable as representing a path.

      • Optionalvalue: Extract<TType, number>

        If not defined then it will be defaulted to 1.

      Returns LazyPromise<boolean>

      true if the key where incremented otherwise false will be returned.

  • missing:function
    • The missing method returns true when key is not found otherwise false will be returned.

      Parameters

      • key: OneOrMore<string>

        can be a string or an Iterable of strings. If it's an Iterable, it will be joined into a single string. Think of an Iterable as representing a path.

      Returns LazyPromise<boolean>

  • put:function
    • The put method replaces th given key with the given value and ttl if the key exists othwerwise it will add the given value with the given ttl.

      Parameters

      • key: OneOrMore<string>

        can be a string or an Iterable of strings. If it's an Iterable, it will be joined into a single string. Think of an Iterable as representing a path.

      • value: TType
      • Optionalttl: null | TimeSpan

        If null is passed, the item will not expire.

      Returns LazyPromise<boolean>

      true if the key where replaced otherwise false is returned.

  • remove:function
    • The remove method removes the given key.

      Parameters

      • key: OneOrMore<string>

        can be a string or an Iterable of strings. If it's an Iterable, it will be joined into a single string. Think of an Iterable as representing a path.

      Returns LazyPromise<boolean>

      true if the key is found otherwise false is returned.

  • removeMany:function
    • The removeMany method removes many keys.

      Parameters

      • keys: Iterable<OneOrMore<string>, any, any>

        The param items can be a string or an Iterable of strings. If the param items are an Iterable, it will be joined into a single string. Think of an Iterable as representing a path.

      Returns LazyPromise<boolean>

      true if one of the keys where deleted otherwise false is returned.

  • update:function
    • The update method updates the given key with given value.

      Parameters

      • key: OneOrMore<string>

        can be a string or an Iterable of strings. If it's an Iterable, it will be joined into a single string. Think of an Iterable as representing a path.

      • value: TType

      Returns LazyPromise<boolean>

      true if the key where updated otherwise false will be returned.