String

APPEND

Append a value to a string stored at key.

Arguments

keybodystringrequired

The key to get.

valuebodyrequired

The value to append.

Response

integerrequired

How many characters were added to the string.

Example
await redis.append(key, "Hello");// returns 5
Loading search…