add 增加 RedisUtils 检查缓存对象是否存在方法

This commit is contained in:
疯狂的狮子li
2022-12-20 10:34:55 +08:00
parent fe173124d5
commit 96984de06d

View File

@@ -209,6 +209,15 @@ public class RedisUtils {
batch.execute();
}
/**
* 检查缓存对象是否存在
*
* @param key 缓存的键值
*/
public static boolean isExistsObject(final String key) {
return CLIENT.getBucket(key).isExists();
}
/**
* 缓存List数据
*