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"
The key to get.
The value to append.
How many characters were added to the string.
Was this page helpful?