stringredistemplate设置过期时间
时间: 2023-04-27 21:05:44 浏览: 211
springcloud、springboot中StringRedisTemplate封装.zip
stringredistemplate可以通过以下方法设置过期时间:
1. 使用opsForValue()方法获取ValueOperations对象。
2. 使用ValueOperations对象的set()方法设置键值对,并设置过期时间。
例如:
```
ValueOperations<String, String> ops = stringRedisTemplate.opsForValue();
ops.set("key", "value", 60, TimeUnit.SECONDS);
```
上述代码将键为"key",值为"value"的键值对设置了60秒的过期时间。
阅读全文