Extends
Methods
(async) delete(key, options)
Delete the value for the given key.
Parameters:
Name | Type | Description |
---|---|---|
key |
string | The key (of form table/id e.g. "execution/1") |
options |
object | null | The options for the delete operation |
(async) read(key, options)
Read the value for the given key.
Parameters:
Name | Type | Description |
---|---|---|
key |
string | The key (of form table/id e.g. "execution/1"). To read all values in the table simply set key to the table name e.g. "table" without a slash or id. |
options |
object | null | The options for the read operation |
(async) write(key, value, options)
Write the value for the given key.
Parameters:
Name | Type | Description |
---|---|---|
key |
string | The key (of form table/id e.g. "execution/1") |
value |
object | The value to store |
options |
object | null | The options for the write operation |