String
APPEND
Append a value to a string stored at key.
await redis.append(key, "Hello");
// returns 5
Arguments
key
string
requiredThe key to get.
value
required
The value to append.
Response
How many characters were added to the string.
await redis.append(key, "Hello");
// returns 5