Removes a value from the cache by its key.
(optional) transaction id to trace execution through call chain.
a unique value key.
(optional) callback function that receives an error or null for success
Retrieves cached value from the cache using its key. If value is missing in the cache or expired it returns null.
(optional) transaction id to trace execution through call chain.
a unique value key.
callback function that receives cached value or error.
Stores value in the cache with expiration time.
(optional) transaction id to trace execution through call chain.
a unique value key.
a value to store.
expiration timeout in milliseconds.
(optional) callback function that receives an error or null for success
Generated using TypeDoc
Dummy cache implementation that doesn't do anything.
It can be used in testing or in situations when cache is required but shall be disabled.
ICache