Interface: TCacheAdapter
Cache adapter for caching plugins
Properties
get()
get: (
key) =>unknown
Cache getter function
Parameters
| Parameter | Type | Description |
|---|---|---|
key | string | The key to store the parsed value (table name) |
Returns
unknown
The corresponded parsed table rows value
Defined in
set()
set: (
key,value) =>any
Cache setter function
Parameters
| Parameter | Type | Description |
|---|---|---|
key | string | The key to store the value under (table name) |
value | unknown | The paired value to store (parsed rows value) |
Returns
any