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.
Was this page helpful?