CacheHelper工具类的使用
package com.bbcmart.util;
import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Element;
//import net.sf.ehcache.store.MemoryStoreEvictionPolicy;
public class CacheHelper {
private static CacheManager cacheManager;
public enum CacheType {
policy, airline, jinri, result, other,
bulletin, linkImage, linkChar, advertisement,waiter
}
public enum OtherType {
str_airline
}
static {
init();
}
public static void init() {
try {
cacheManager = CacheManager.create();
cacheManager.addCache(createCacheByType(CacheType.policy));
cacheManager.addCache(createCacheByType(CacheType.airline));
cacheManager.addCache(createCacheByType(CacheType.jinri));
cacheManager.addCache(createCacheByType(CacheType.result));
cacheManager.addCache(createCacheByType(CacheType.other));
cacheManager.addCache(createCacheByType(CacheType.bulletin));
cacheManager.addCache(createCacheByType(CacheType.linkImage));
cacheManager.addCache(createCacheByType(CacheType.linkChar));
cacheManager.addCache(createCacheByType(CacheType.advertisement));
cacheManager.addCache(createCacheByType(CacheType.waiter));
}
catch (Exception e) {
e.printStackTrace();
}
}
private static Cache createCacheByType(CacheType aCacheType) {
Cache result = null;
if (CacheType.policy.equals(aCacheType))
result = new Cache(CacheType.policy.toString(), 4000, false, true, 0, 0);
if (CacheType.airline.equals(aCacheType))
result = new Cache(CacheType.airline.toString(), 4000, false, false, 300, 300);
if (CacheType.jinri.equals(aCacheType))
result = new Cache(CacheType.jinri.toString(), 4000, false, false, 300, 300);
if (CacheType.result.equals(aCacheType))
result = new Cache(CacheType.result.toString(), 4000, false, false, 300, 300);
if (CacheType.other.equals(aCacheType))
result = new Cache(CacheType.other.toString(), 100, false, true, 0, 0);
if (CacheType.bulletin.equals(aCacheType))
result = new Cache(CacheType.bulletin.toString(), 1000, false, false, 900, 600);
if (CacheType.linkImage.equals(aCacheType))
result = new Cache(CacheType.linkImage.toString(), 1000, false, false, 900, 600);
if (CacheType.linkChar.equals(aCacheType))
result = new Cache(CacheType.linkChar.toString(), 1000, false, false, 900, 600);
if (CacheType.advertisement.equals(aCacheType))
result = new Cache(CacheType.advertisement.toString(), 1000, false, false, 900, 600);
if (CacheType.waiter.equals(aCacheType))
result = new Cache(CacheType.waiter.toString(), 1000, false, false, 900, 600);
//Cache black = new Cache(Const.CACHE_BLACK, 2000, MemoryStoreEvictionPolicy.LFU, false, null, true, 0, 0, false, 0, null);
return result;
}
private static Cache getCacheByType(CacheType aCacheType) {
Cache result = cacheManager.getCache(aCacheType.toString());
if (result==null)
result = createCacheByType(aCacheType);
return result;
}
public static boolean exist(CacheType aType, String aKey) {
boolean result = false;
if (aType != null && aKey != null) {
Cache cache = cacheManager.getCache(aType.toString());
if (cache!=null)
result = cache.isKeyInCache(aKey);
}
return result;
}
public static void put(CacheType aType, String aKey, Object aValue) {
if (aType != null && aKey != null) {
getCacheByType(aType).put(new Element(aKey, aValue));
}
}
public static void remove(CacheType aType, String aKey) {
getCacheByType(aType).remove(aKey);
}
public static Object get(CacheType aType, String aKey) {
Object result = null;
if (aType != null && aKey != null) {
try {
Element element = getCacheByType(aType).get(aKey);
if (element!=null)
result = element.getValue();
}
catch (Exception ex) {
ex.printStackTrace();
}
}
return result;
}
public static String getStrFromCache(CacheType aType, String aKey) {
String result = "";
Object temp = get(aType, aKey);
if (temp != null)
result = temp.toString();
return result;
}
public static void putOther(OtherType aKey, Object aValue) {
if (aKey != null) {
getCacheByType(CacheType.other).put(new Element(aKey.toString(), aValue));
}
}
public static void removeOther(OtherType aKey) {
getCacheByType(CacheType.other).remove(aKey.toString());
}
public static Object getOther(OtherType aType) {
Object result = null;
if (aType != null) {
try {
Element element = getCacheByType(CacheType.other).get(aType.toString());
if (element!=null)
result = element.getValue();
}
catch (Exception ex) {
ex.printStackTrace();
}
}
return result;
}
public static String getStrFromCacheOther(OtherType aKey) {
String result = "";
Object temp = getOther(aKey);
if (temp != null)
result = temp.toString();
return result;
}
public static void destroy() {
try {
CacheManager.getInstance().removalAll();
cacheManager = null;
}
catch (Exception ex){
ex.printStackTrace();
}
}
}
CacheHelper工具类的使用的更多相关文章
- Java基础Map接口+Collections工具类
1.Map中我们主要讲两个接口 HashMap 与 LinkedHashMap (1)其中LinkedHashMap是有序的 怎么存怎么取出来 我们讲一下Map的增删改查功能: /* * Ma ...
- Android—关于自定义对话框的工具类
开发中有很多地方会用到自定义对话框,为了避免不必要的城府代码,在此总结出一个工具类. 弹出对话框的地方很多,但是都大同小异,不同无非就是提示内容或者图片不同,下面这个类是将提示内容和图片放到了自定义函 ...
- [转]Java常用工具类集合
转自:http://blog.csdn.net/justdb/article/details/8653166 数据库连接工具类——仅仅获得连接对象 ConnDB.java package com.ut ...
- js常用工具类.
一些js的工具类 复制代码 /** * Created by sevennight on 15-1-31. * js常用工具类 */ /** * 方法作用:[格式化时间] * 使用方法 * 示例: * ...
- Guava库介绍之实用工具类
作者:Jack47 转载请保留作者和原文出处 欢迎关注我的微信公众账号程序员杰克,两边的文章会同步,也可以添加我的RSS订阅源. 本文是我写的Google开源的Java编程库Guava系列之一,主要介 ...
- Java程序员的日常—— Arrays工具类的使用
这个类在日常的开发中,还是非常常用的.今天就总结一下Arrays工具类的常用方法.最常用的就是asList,sort,toStream,equals,copyOf了.另外可以深入学习下Arrays的排 ...
- .net使用正则表达式校验、匹配字符工具类
开发程序离不开数据的校验,这里整理了一些数据的校验.匹配的方法: /// <summary> /// 字符(串)验证.匹配工具类 /// </summary> public c ...
- WebUtils-网络请求工具类
网络请求工具类,大幅代码借鉴aplipay. using System; using System.Collections.Generic; using System.IO; using System ...
- JAVA 日期格式工具类DateUtil.java
DateUtil.java package pers.kangxu.datautils.utils; import java.text.SimpleDateFormat; import java.ut ...
随机推荐
- 程序启动报错:ORA-12505;PL/SQL却可以登录的解决方法
一.异常{ ORA-12505, TNS:listener does not currently know of SID given in connect descriptor The Connect ...
- 跟着鬼哥学so改动,一,准备篇
图/文 听鬼哥说故事 闲话少说,so的改动,重要性大家都知道,这里从头编写so文件,分析so文件,改动so文件,打算做一个系列的教程,当然,主要是看时间同意. android的sdk配置以及ndk环境 ...
- 数据库元数据MetaData
本篇介绍数据库方面的元数据(MetaData)的有关知识.元数据在建立框架和架构方面是特别重要的知识,再下一篇我们仿造开源数据库工具类DbUtils就要使用数据库的元数据来创建自定义JDBC框架. 在 ...
- 基于visual Studio2013解决C语言竞赛题之1053洗牌
题目 解决代码及点评 /* 功能:洗扑克牌.将54张牌分别编号为1,2,-,54号,并放在数组M中. 洗牌方法如下:产生[1,54]区间内的一个随机数K,将M[1]与M[K]交换: ...
- 上一篇括号配对让人联想起catalan数,顺便转载一篇归纳的还不错的文章
转载请注明来自souldak,微博:@evagle 怎么样才是合法的组合? 只要每一时刻保证左括号的数目>=右括号的数目即可. 直接递归就行,每次递归加一个括号,左括号只要还有就能加,右括号要保 ...
- 《Head First 设计模式》学习笔记——状态模式
在软件开发过程中.应用程序可能会依据不同的情况作出不同的处理. 最直接的解决方式是将这些全部可能发生的情况全都考虑到.然后使用if... ellse语句来做状态推断来进行不同情况的处理. 可是对复杂状 ...
- 基本HTML5文件结构
作者 : Dolphin 原文地址:http://blog.csdn.net/qingdujun/article/details/28129039 基本HTML5文件结构: <!--<!D ...
- 慎得慌二u赫然共和任务i个屁
http://www.huihui.cn/share/8424421 http://www.huihui.cn/share/8424375 http://www.huihui.cn/share/842 ...
- Swift - 数组排序方法(附样例)
下面通过一个样例演示如何对数组元素进行排序.数组内为自定义用户对象,最终要实现按用户名排序,数据如下: 1 2 3 4 var userList = [UserInfo]() userList.app ...
- 关键部分CCriticalSection使用
类CCriticalSection的对象表示一个“临界区”,它是一个用于同步的对象,同一时刻仅仅同意一个线程存取资源或代码区.临界区在控制一次仅仅有一个线程改动数据或其他的控制资源时很实用.比如,在链 ...