Interface for a local memory cache used by GenericLocalMemoryCacher. Most often, this is something like a TTLCache from the @isaacs/ttlcache package or an lru-cache.
@isaacs/ttlcache
Deletes a value from the cache for specified key.
key to delete
Gets a value from the cache for specified key.
key to get
the cached value, or undefined if not present
Sets a value in the cache for specified key.
key to set
value to set
Interface for a local memory cache used by GenericLocalMemoryCacher. Most often, this is something like a TTLCache from the
@isaacs/ttlcachepackage or an lru-cache.