CacheAdapter
Implemented by
Index
Methods
clear
Returns Promise<void>
optionalclose
Called inside
MikroORM.close()
Allows graceful shutdowns (e.g. for redis).Returns Promise<void>
get
Gets the items under
name
key from the cache.Parameters
name: string
Returns Promise<any>
remove
Removes the item from cache.
Parameters
name: string
Returns Promise<void>
set
Sets the item to the cache.
origin
is used for cache invalidation and should reflect the change in data.Parameters
name: string
data: any
origin: string
optionalexpiration: number
Returns Promise<void>
Clears all items stored in the cache.