Arguments
string
required
The key to get.
required
The value to append.
Response
How many characters were added to the string.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
await redis.append(key, "Hello");
// returns 5
Append a value to a string stored at key.
await redis.append(key, "Hello");
// returns 5
Was this page helpful?