MemoryCacheAdapter
Implements
Index
Constructors
Methods
Constructors
constructor
Parameters
options: { expiration: number }
expiration: number
Returns MemoryCacheAdapter
Methods
clear
Clears all items stored in the cache.
Returns void
get
Gets the items under
namekey from the cache. Whenoriginis provided, adapters that track the entry origin should ignore entries cached from a different source file.Parameters
name: string
Returns undefined | T
remove
Removes the item from cache.
Parameters
name: string
Returns void
set
Sets the item to the cache.
originis used for cache invalidation and should reflect the change in data.Parameters
name: string
data: any
origin: string
optionalexpiration: number
Returns void
In-memory cache adapter with time-based expiration. Used as the default result cache.