Type Alias WithCacheWriteLockMethods

WithCacheWriteLockMethods: keyof Pick<
    ICacheAdapter,
    | "getAndRemove"
    | "add"
    | "put"
    | "update"
    | "increment"
    | "removeMany"
    | "getOrAdd",
>

Cache adapter methods that can be protected by a write lock.

Only the mutable methods that modify cache state are eligible for write-lock protection.

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