GeneratedCacheAdapter
Implements
Index
Constructors
Methods
Constructors
constructor
Parameters
options: { data: Dictionary }
data: Dictionary
Returns GeneratedCacheAdapter
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
Returns void
Cache adapter backed by pre-generated static data, typically produced by the CLI cache:generate command.