Redis Keys Persist命令
Redis PERSIST 命令用于从键中移除失效时间。
返回值
返回整数值1或0。
- 如果键的失效时间被移除,则返回1。
- 如果键不存在或没有关联的失效时间,则返回0。
语法
以下是Redis PERSIST 命令的基本语法。
redis 127.0.0.1:6379> PERSIST KEY_NAME
示例
首先,在Redis中创建一个键,并设置一些值。
redis 127.0.0.1:6379> SET tutorial1 redis
OK
现在,设置密钥的过期时间,稍后再移除过期时间。
redis 127.0.0.1:6379> EXPIRE tutorial1 60
1) (integer) 1
redis 127.0.0.1:6379> TTL tutorial1
1) (integer) 60
redis 127.0.0.1:6379> PERSIST tutorial1
1) (integer) 1
redis 127.0.0.1:6379> TTL tutorial1
1) (integer) -1