APPEND
Synopsis
APPEND key string_value
This command appends a value to the end of the string that is associated with the given key
.
Return value
Returns the length of the resulted string after appending.
Examples
$ GET yugakey
"Yuga"
$ APPEND yugakey "Byte"
8
$ GET yugakey
"Yugabyte"