Redis GETSET命令
Redis GETSET命令設置指定的在Redis的鍵的字符串值,並返回其原來的值。
返回值
回複簡單的字符串,鍵的舊值。如果鍵不存在,那麼返回nil。
語法
redis GETSET命令的基本語法如下所示:
redis 127.0.0.1:6379> GETSET KEY_NAME VALUE
例子
redis 127.0.0.1:6379> GETSET mynewkey "This is my test key" (nil) redis 127.0.0.1:6379> GETSET mynewkey "This is my new value to test getset" "This is my test key"