Redis 之 EXPIRE 命令的使用

redis 过期时间

HELP EXPIRE

为给定 key 设置生存时间,当 key 过期时(生存时间为 0 ),它会被自动删除。

EXPIRE key seconds
summary: Set a key’s time to live in seconds
since: 1.0.0
group: generic

时间复杂度:O(1)

代码示例

SET cache_page "www.test.com" // 创建字符串key cache_page
EXPIRE cache_page 60 // 设置过期时间为60秒
TTL cache_page // 查看剩余生存时间
EXPIRE cache_page 100 // 更新过期时间
TTL cache_page // 查看更新后的剩余生存时间

测试

127.0.0.1:6379[1]> SET cache_page "www.test.com"
OK
127.0.0.1:6379[1]> EXPIRE cache_page 60
(integer) 1
127.0.0.1:6379[1]> TTL cache_page
(integer) 55
127.0.0.1:6379[1]> EXPIRE cache_page 100
(integer) 1
127.0.0.1:6379[1]> TTL cache_page
(integer) 97

PHP 客户端代码

$redis = new \Redis();
$redis->connect('127.0.0.1', 6379);
$key = 'cache_page';
$value = 'http://www.flybing.com';
$expireTime = 60;
$string = $redis->set($key, $value);
$stringEx = $redis->expire($key, $expireTime);
$stringExTime = $redis->ttl($key);
$stringEx2 = $redis->expire($key, $expireTime + 40);
$stringExTime2 = $redis->ttl($key);
return compare(
    'string',
    'stringEx',
    'stringExTime',
    'stringEx2',
    'stringExTime2'
);
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值