redisTemplate超时设置
Posted 厚积_薄发
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redisTemplate超时设置相关的知识,希望对你有一定的参考价值。
redistempalate的超时设置时,一定要每次用set写入时,更新超时,不然默认会失效的。
例如:
int tempTime = this.redisTemplate.getExpire("max").intValue();
tempCount = this.redisTemplate.opsForValue().get("max")-1;
this.redisTemplate.opsForValue().set("max", tempCount);
this.redisTemplate.expire("max",tempTime,TimeUnit.SECONDS);
以上是关于redisTemplate超时设置的主要内容,如果未能解决你的问题,请参考以下文章
[线上问题]redisTemplate.setValueSerializer 对redis值的全局设置影响
项目中redisTemplate设置的key,redis客户端上查询不到的问题