优化缓存工具类

v1.4.1
Parker 4 years ago
parent 94b01ec067
commit f53cf7cb0c

@ -975,8 +975,10 @@ public class CacheUtil {
// 删除 EhCache 不论是什么 本地都按照热数据处理 // 删除 EhCache 不论是什么 本地都按照热数据处理
ehCachePlugin.delete(CacheConstants.HOT_DATA,key+":"+field); ehCachePlugin.delete(CacheConstants.HOT_DATA,key+":"+field);
// 删除 Redis // 删除 Redis
redisPlugin.hDelete(key, field); Long hDeleteLong = redisPlugin.hDelete(key, field);
ret = true; if(hDeleteLong != null && hDeleteLong > 0){
ret = true;
}
}catch (Exception e){ }catch (Exception e){
log.error(e.getMessage(),e); log.error(e.getMessage(),e);
} }
@ -1000,8 +1002,7 @@ public class CacheUtil {
// 删除 EhCache 不论是什么 本地都按照热数据处理 // 删除 EhCache 不论是什么 本地都按照热数据处理
ehCachePlugin.delete(CacheConstants.HOT_DATA,key); ehCachePlugin.delete(CacheConstants.HOT_DATA,key);
// 删除 Redis // 删除 Redis
redisPlugin.del(key); ret = redisPlugin.del(key);
ret = true;
}catch (Exception e){ }catch (Exception e){
log.error(e.getMessage(),e); log.error(e.getMessage(),e);
} }
@ -1039,9 +1040,8 @@ public class CacheUtil {
public static boolean delNilFlag(String key) { public static boolean delNilFlag(String key) {
boolean ret = false; boolean ret = false;
try { try {
// 存入Redis // 删除Redis
redisPlugin.del(NIL_FLAG_PREFIX + key); ret = redisPlugin.del(NIL_FLAG_PREFIX + key);
ret = true;
}catch (Exception e){ }catch (Exception e){
log.error(e.getMessage(),e); log.error(e.getMessage(),e);
} }

Loading…
Cancel
Save