Type of the key.
Type of the value.
Type of the cache entry.
Defaults to CacheEntry.
Number of stored entries.
Iterate over stored entries.
Remove all entries from storage.
Delete entry
.
Entry that needs to be deleted.
Get the CacheEntry associated with key
.
Name of the key.
Check if key
is present in the cache.
Name of the key.
Returns an iterable of stored keys.
Store key with value.
⚠️ WARNING ⚠️
This method should not be used to overwrite value of the key!
You need to query the entry first and update value on the entry object.
Name of the key.
Value associated with key.
Returns an iterable of stored values.
Backend which uses as underlying storage EcmaScript 6 Map. It can be seen as a simple proxy over Map. Each operation is forwarded to underlying Map instance.