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工具类的使用的更多相关文章

  1. Java基础Map接口+Collections工具类

    1.Map中我们主要讲两个接口 HashMap  与   LinkedHashMap (1)其中LinkedHashMap是有序的  怎么存怎么取出来 我们讲一下Map的增删改查功能: /* * Ma ...

  2. Android—关于自定义对话框的工具类

    开发中有很多地方会用到自定义对话框,为了避免不必要的城府代码,在此总结出一个工具类. 弹出对话框的地方很多,但是都大同小异,不同无非就是提示内容或者图片不同,下面这个类是将提示内容和图片放到了自定义函 ...

  3. [转]Java常用工具类集合

    转自:http://blog.csdn.net/justdb/article/details/8653166 数据库连接工具类——仅仅获得连接对象 ConnDB.java package com.ut ...

  4. js常用工具类.

    一些js的工具类 复制代码 /** * Created by sevennight on 15-1-31. * js常用工具类 */ /** * 方法作用:[格式化时间] * 使用方法 * 示例: * ...

  5. Guava库介绍之实用工具类

    作者:Jack47 转载请保留作者和原文出处 欢迎关注我的微信公众账号程序员杰克,两边的文章会同步,也可以添加我的RSS订阅源. 本文是我写的Google开源的Java编程库Guava系列之一,主要介 ...

  6. Java程序员的日常—— Arrays工具类的使用

    这个类在日常的开发中,还是非常常用的.今天就总结一下Arrays工具类的常用方法.最常用的就是asList,sort,toStream,equals,copyOf了.另外可以深入学习下Arrays的排 ...

  7. .net使用正则表达式校验、匹配字符工具类

    开发程序离不开数据的校验,这里整理了一些数据的校验.匹配的方法: /// <summary> /// 字符(串)验证.匹配工具类 /// </summary> public c ...

  8. WebUtils-网络请求工具类

    网络请求工具类,大幅代码借鉴aplipay. using System; using System.Collections.Generic; using System.IO; using System ...

  9. JAVA 日期格式工具类DateUtil.java

    DateUtil.java package pers.kangxu.datautils.utils; import java.text.SimpleDateFormat; import java.ut ...

随机推荐

  1. Session for Tornado(Redis) - 代码分享

    Session for Tornado(Redis) - 代码分享   Session for Tornado(Redis) session id的生成借用了web.py. 使用了 redis 的 h ...

  2. ASP.NET - 对URL传递的值进行编码Server.UrlEncode()

    /// <summary> /// 搜索内容 /// </summary> /// <param name="sender"></para ...

  3. linux命令:scp

    有时候ftp被禁用了, 就用scp替代; 命令行: scp from to_user@to_ip:dir_to/file_name 执行该命令之后,按照提示输入to_host的登陆密码即可. scp ...

  4. Windows Azure入门教学系列 (九):Windows Azure 诊断功能

    本文是Windows Azure入门教学的第九篇文章. 本文将会介绍如何使用Windows Azure 诊断功能.跟部署在本地服务器上的程序不同,当我们的程序发布到云端之后,我们不能使用通常的调试方法 ...

  5. HBase数据存储格式

    好的数据结构,对于检索数据,插入数据的效率就会很高. 常见的数据结构 B+树 根节点和枝节点非常easy,分别记录每一个叶子节点的最小值,并用一个指针指向叶子节点.  叶子节点里每一个键值都指向真正的 ...

  6. UVA它11292 - Dragon of Loowater

    Problem C: The Dragon of Loowater Once upon a time, in the Kingdom of Loowater, a minor nuisance tur ...

  7. WordPress数据备份

    服务器钱用光了要关了或者是服务器想要搬家,需要备份各种数据. 今天简单的备份了一下在服务器上面wordpress各种文件和资源. wordpress的数据主要分两个部分,一个是文字部分的:一个是附件部 ...

  8. Spark SQL Catalyst源代码分析之TreeNode Library

    /** Spark SQL源代码分析系列文章*/ 前几篇文章介绍了Spark SQL的Catalyst的核心执行流程.SqlParser,和Analyzer,本来打算直接写Optimizer的,可是发 ...

  9. 将n进制的数组压缩成字符串(0-9 a-z)同一时候解压

    比如一个3进制的数组: [1 1 2 2 2 0 0] 用一个字符串表示... 此类题目要明白两点: 1. 打表:用数组下标索引字符.同一时候注意假设从字符相应回数字: int index = (st ...

  10. 转载【浅谈ThreadPool 线程池】

    浅谈ThreadPool 线程池 http://www.cnblogs.com/xugang/archive/2010/04/20/1716042.html