import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Element;
/**
* @ClassName:EhCacheUtil
* @Description: <p> Ehcache工具类 </p>
* @Author: - Jason
* @CreatTime:2019/7/26 - 9:21
* @Modify By:
* @ModifyTime: 2019/7/26
* @Modify marker:
* @version V1.0
*/
public class EhCacheUtil {
/**
* @Description: 获取缓存
* @param cacheName 缓存名字
* @return Cache
* @Autor: Jason
*/
private static Cache getCache(String cacheName) {
CacheManager cacheManager = CacheManager.getInstance();
if (null == cacheManager) {
return null;
}
Cache cache = cacheManager.getCache(cacheName);
if (null == cache) {
return null;
}
return cache;
}
/**
* @Description: 新增缓存记录
* @param cacheName 缓存名字
* @param key 缓存key
* @Autor: Jason
*/
public static void put(String cacheName, String key, Object value) {
Cache cache = getCache(cacheName);
if (null != cache) {
Element element = new Element(key, value);
cache.put(element);
}
}
/**
* @Description: 删除缓存记录
* @param cacheName 缓存名字
* @param key 缓存key
* @return boolean 是否成功删除
* @Autor: Jason
*/
public static boolean remove(String cacheName, String key) {
Cache cache = getCache(cacheName);
if (null == cache) {
return false;
}
return cache.remove(key);
}
/**
* @Description: 删除全部缓存记录
* @param cacheName 缓存名字
* @Autor: Jason
*/
public static void removeAll(String cacheName) {
Cache cache = getCache(cacheName);
if (null != cache) {
//logOnRemoveAllIfPinnedCache();
cache.removeAll();
}
}
/**
* @Description: 获取缓存记录
* @param cacheName 缓存名字
* @param key 缓存key
* @return Object 缓存记录数据Object
* @Autor: Jason
*/
public static Object get(String cacheName, String key) {
Cache cache = getCache(cacheName);
if (null == cache) {
return null;
}
Element cacheElement = cache.get(key);
if (null == cacheElement) {
return null;
}
return cacheElement.getObjectValue();
}
}
03EhCacheUtils 工具类
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 干货要点: 1、叙述、描写和说明是三种记“实”的能力。 2、议论和抒情是两种写“虚”的能力。 3、根据表达的中心,...
- 运营是一个极其复杂的工种,它作为用户和产品之间的桥梁,要涉及到内容、活动、用户、数据分析等工作, 对于刚接触运营的...
- 参考文献:《Java疯狂讲义》(第三版) Objects工具类 知识点: 它提供了一些工具方法来操作对象,这些工具...