redistemplate.expire方法使用
时间: 2024-05-27 16:14:28 浏览: 337
在Java中使用redisTemplate操作缓存的方法示例
5星 · 资源好评率100%
redistemplate.expire方法用于设置Redis中指定key的过期时间。其用法如下:
redistemplate.expire(key, timeout, timeUnit)
其中,key为Redis中的key,timeout为过期时间,timeUnit为时间单位。例如,设置key为"foo"的过期时间为60秒:
redistemplate.expire("foo", 60, TimeUnit.SECONDS)
该方法返回值为boolean类型,表示设置是否成功。如果key不存在或已经过期,则返回false。
阅读全文