Arguments
str
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.
redis.set("key", "Hello")
assert redis.append("key", " World") == 11
assert redis.get("key") == "Hello World"
Append a value to a string stored at key.
redis.set("key", "Hello")
assert redis.append("key", " World") == 11
assert redis.get("key") == "Hello World"
Was this page helpful?