Redis - 附加字符串命令



Redis APPEND 命令用于向键中添加某些值。

返回值

整数回复,追加操作后字符串的长度。

语法

以下是 Redis APPEND 命令的基本语法。

redis 127.0.0.1:6379> APPEND KEY_NAME NEW_VALUE

示例

redis 127.0.0.1:6379> SET mykey "hello" 
OK 
redis 127.0.0.1:6379> APPEND mykey " tutorialspoint" 
(integer) 20 
redis 127.0.0.1:6379> GET mykey  
"hello tutorialspoint"
redis_strings.htm
广告