smart-starter-redis/src/main/java/com/qianwen/core/redis/cache/BladeRedis.java
@@ -192,6 +192,12 @@ return this.redisTemplate.move(key, dbIndex); } /** * 设置指定key的超市时间 * @param key redisKey * @param seconds 秒数 * @return */ public Boolean expire(String key, long seconds) { return this.redisTemplate.expire(key, seconds, TimeUnit.SECONDS); }