Redis String Append 命令

  • 描述

    String Append 命令用于在键中添加一些值。
  • 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 " jc2182" 
    (integer) 12 
    redis 127.0.0.1:6379> GET mykey  
    "hello jc2182"