ReadonlynameThe name of the store (e.g. 'mongodb', 'redis', 'dynamodb')
ReadonlylibraryThe client library being used
Returns the underlying DAX (DynamoDB-compatible) client for anything not wrapped here.
Read a key via getItem. Returns the stored string, or null if missing.
Write value under key via putItem. Strings are stored verbatim;
other values are JSON-serialized. options.ttl/options.expiration
populate the table's TTL attribute (ttlAttr).
Delete a key via deleteItem.
List key names via scan, optionally filtered to those beginning with prefix.
Optionalprefix: stringIncrement the numeric value at key by by (default 1). Implemented
as a non-atomic read-modify-write over getItem/putItem.
DaxStorewraps anamazon-dax-client(DynamoDB-compatible) client behind theNoSqlStorelifecycle and an edge-KVget/set/del/list/incrsurface over a single DynamoDB table.