yangys
2024-05-30 a3686cfa49bf53fb91a2ceb960cf15b3ebdac641
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);
    }