Redis Psetex 命令
更新时间: 2019-07-07 15:54
Redis Psetex 命令以毫秒为单位设置 key 的生存时间。
语法
redis 127.0.0.1:6379> PSETEX key1 EXPIRY_IN_MILLISECONDS value1
返回值
设置成功时返回 OK 。
实例
127.0.0.1:6379> psetex domain 10000 www.codercto.com
OK
127.0.0.1:6379> ttl domain
7
127.0.0.1:6379> pttl domain
2649
查看更多 Redis 字符串(String)命令