redisTemplate.opsForValue().setIfAbsent(key, "1", Duration.ofSeconds(expire));
时间: 2024-04-25 07:25:23 浏览: 216
Python操作Redis之设置key的过期时间实例代码
5星 · 资源好评率100%
这行代码是使用 RedisTemplate 的 opsForValue 方法来设置一个键值对,并且设置了一个过期时间。具体来说,setIfAbsent 方法会在键不存在时才进行设置,避免覆盖已存在的键值对。参数 key 是键的名称,"1" 是键对应的值,而 Duration.ofSeconds(expire) 则是设置的过期时间,以秒为单位。
阅读全文