OSCache

[编辑本段]

OSCache介绍 

  OSCache是个一个广泛采用的高性能的J2EE缓存框架,OSCache能用于任何Java应用程序的普通的缓存解决方案。OSCache有以下特点:缓存任何对象,你可以不受限制的缓存部分jsp页面或HTTP请求,任何java对象都可以缓存。拥有全面的API--OSCache API给你全面的程序来控制所有的OSCache特性。永久缓存--缓存能随意的写入硬盘,因此允许昂贵的创建(expensive-to-create)数据来保持缓存,甚至能让应用重启。支持集群--集群缓存数据能被单个的进行参数配置,不需要修改代码。缓存记录的过期--你可以有最大限度的控制缓存对象的过期,包括可插入式的刷新策略(如果默认性能不需要时)。

[编辑本段]

OSCache特点

  缓存任何对象,你可以不受限制的缓存部分jsp页面或HTTP请求,任何java对象都可以缓存。

  拥有全面的API--OSCacheAPI给你全面的程序来控制所有的OSCache特性。

  永久缓存--缓存能随意的写入硬盘,因此允许昂贵的创建(expensive-to-create)数据来保持缓存,甚至能让应用重启。

  支持集群--集群缓存数据能被单个的进行参数配置,不需要修改代码。

  缓存记录的过期--你可以有最大限度的控制缓存对象的过期,包括可插入式的刷新策略(如果默认性能不需要时)

[编辑本段]

安装过程

  下载合适的OSCache版本,

  下载的是oscache-2.0.2-full版本。

  解压缩下载的文件到指定目录

  从解压缩目录取得oscache.jar文件放到 /WEB-INF/lib 或相应类库目录 目录中,

  jar文件名可能含有版本号和该版本的发布日期信息等,如oscache-2.0.2-22Jan04.jar

  如果你的jdk版本为1.3.x,建议在lib中加入ApacheCommon Lib 的commons-collections.jar包。

  如jdk是1.4以上则不必

  从src或etc目录取得oscache.properties文件,放入src根目录或发布环境的/WEB-INF/classes目录

  如你需要建立磁盘缓存,须修改oscache.properties中的cache.path信息 (去掉前面的#注释)。

  win类路径类似为c:\\app\\cache

  unix类路径类似为/opt/myapp/cache

  拷贝OSCache标签库文件oscache.tld到/WEB-INF/classes目录。

  现在你的应用目录类似如下:

  $WEB_APPLICATION\WEB-INF\lib\oscache.jar

  $WEB_APPLICATION\WEB-INF\classes\oscache.properties

  $WEB_APPLICATION\WEB-INF\classes\oscache.tld

  将下列代码加入web.xml文件中

  oscache

  /WEB-INF/classes/oscache.tld

  为了便于调试日志输出,须加入commons-logging.jar和log4j-1.2.8.jar到当前类库路径中

  在src目录加入下面两个日志输出配置文件:

  log4j.properties 文件内容为:

  log4j.rootLogger=DEBUG,stdout,file

  log4j.appender.stdout=org.apache.log4j.ConsoleAppender

  log4j.appender.stdout.layout=org.apache.log4j.PatternLayout

  log4j.appender.stdout.layout.ConversionPattern=[start]%d{yyyy/MM/dd/HH:mm:ss}[DATE]%n%p[PRIORITY]%n%x[NDC]%n%t[THREAD]n%c[CATEGORY]%n%m[MESSAGE]%n%n

  log4j.appender.file=org.apache.log4j.RollingFileAppender

  log4j.appender.file.File=oscache.log

  log4j.appender.file.MaxFileSize=100KB

  log4j.appender.file.MaxBackupIndex=5

  log4j.appender.file.layout=org.apache.log4j.PatternLayout

  log4j.appender.file.layout.ConversionPattern=[start]%d{yyyy/MM/dd/HH:mm:ss}[DATE]%n%p[PRIORITY]%n%x[NDC]%n%t[THREAD]n%c[CATEGORY]%n%m[MESSAGE]%n%n

  log4j.logger.org.apache.commons=ERROR

  log4j.logger.com.opensymphony.oscache.base=INFO

  commons-logging.properties文件内容为

  org.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JCategoryLog

[编辑本段]

oscache.properties 文件配置向导

  cache.memory

  值为true 或false ,默认为在内存中作缓存,

  如设置为false,那cache只能缓存到数据库或硬盘中,那cache还有什么意义:)

  cache.capacity

  缓存元素个数

  cache.persistence.class

  持久化缓存类,如此类打开,则必须设置cache.path信息

  cache.cluster 相关

  为集群设置信息。

  如

  cache.cluster.multicast.ip为广播IP地址

  cache.cluster.properties为集群属性

[编辑本段]

缓存过滤器 CacheFilter

  你可以在web.xml中定义缓存过滤器,定义特定资源的缓存。

  注意,CacheFilter只捕获Http头为200的页面请求,即只对无错误请求作缓存,

  而不对其他请求(如500,404,400)作缓存处理

[编辑本段]

OSCache进行缓存对象的研究

  这个是我今天要说的东西。网上对于OSCache缓存Web页面很多说明和例子,但对于缓存对象方面说得不多,我就把自已写得一些东西放出来,让大家看一看是怎样缓存对象的!

  我基于GeneralCacheAdministrator类来写的BaseCache类

  view plainprint?

  packagecom.klstudio.cache;

  importjava.util.Date;

  importcom.opensymphony.oscache.base.NeedsRefreshException;

  importcom.opensymphony.oscache.general.GeneralCacheAdministrator;

  public classBaseCache extends GeneralCacheAdministrator {

  //过期时间(单位为秒);

  private intrefreshPeriod;

  //关键字前缀字符;

  private StringkeyPrefix;

  private staticfinal long serialVersionUID = -4397192926052141162L;

  publicBaseCache(String keyPrefix,int refreshPeriod){

  super();

  this.keyPrefix =keyPrefix;

  this.refreshPeriod= refreshPeriod;

  }

  //添加被缓存的对象;

  public voidput(String key,Object value){

  this.putInCache(this.keyPrefix+"_"+key,value);

  }

  //删除被缓存的对象;

  public voidremove(String key){

  this.flushEntry(this.keyPrefix+"_"+key);

  }

  //删除所有被缓存的对象;

  public voidremoveAll(Date date){

  this.flushAll(date);

  }

  public voidremoveAll(){

  this.flushAll();

  }

  //获取被缓存的对象;

  public Objectget(String key) throws Exception{

  try{

  returnthis.getFromCache(this.keyPrefix+"_"+key,this.refreshPeriod);

  } catch(NeedsRefreshException e) {

  this.cancelUpdate(this.keyPrefix+"_"+key);

  throw e;

  }

  }

  }

  packagecom.klstudio.cache;

  import java.util.Date;

  importcom.opensymphony.oscache.base.NeedsRefreshException;

  importcom.opensymphony.oscache.general.GeneralCacheAdministrator;

  public classBaseCache extends GeneralCacheAdministrator {

  //过期时间(单位为秒);

  private intrefreshPeriod;

  //关键字前缀字符;

  private StringkeyPrefix;

  private staticfinal long serialVersionUID = -4397192926052141162L;

  publicBaseCache(String keyPrefix,int refreshPeriod){

  super();

  this.keyPrefix =keyPrefix; this.refreshPeriod = refreshPeriod;

  }

  //添加被缓存的对象;

  public voidput(String key,Object value){

  this.putInCache(this.keyPrefix+"_"+key,value);

  }

  //删除被缓存的对象;

  public voidremove(String key){

  this.flushEntry(this.keyPrefix+"_"+key);

  }

  //删除所有被缓存的对象;

  public voidremoveAll(Date date){

  this.flushAll(date);

  }

  public voidremoveAll(){

  this.flushAll();

  }

  //获取被缓存的对象;

  public Objectget(String key) throws Exception{

  try{

  returnthis.getFromCache(this.keyPrefix+"_"+key,this.refreshPeriod);

  }

  catch (NeedsRefreshExceptione) {

  this.cancelUpdate(this.keyPrefix+"_"+key);throw e;

  }

  }

  }

  通过CacheManager类来看怎样缓存对象的,这个类中所用的News只是具体功能的类,我就不贴出来了,你可以自己写一个!

  view plainprint?

  packagecom.klstudio;

  importcom.klstudio.News;

  importcom.klstudio.cache.BaseCache;

  public classCacheManager {

  private BaseCachenewsCache;

  private staticCacheManager instance;

  private staticObject lock = new Object();

  publicCacheManager() {

  //这个根据配置文件来,初始BaseCache而已;

  newsCache = newBaseCache("news",1800);

  }

  public staticCacheManager getInstance(){

  if (instance ==null){

  synchronized( lock){

  if (instance ==null){

  instance = newCacheManager();

  }

  }

  }

  return instance;

  }

  public voidputNews(News news) {

  // TODO 自动生成方法存根

  newsCache.put(news.getID(),news);

  }

  public voidremoveNews(String newsID) {

  // TODO 自动生成方法存根

  newsCache.remove(newsID);

  }

  public NewsgetNews(String newsID) {

  // TODO 自动生成方法存根

  try {

  return (News)newsCache.get(newsID);

  } catch (Exceptione) {

  // TODO 自动生成catch 块

  System.out.println("getNews>>newsID["+newsID+"]>>"+e.getMessage());

  News news = newNews(newsID);

  this.putNews(news);

  return news;

  }

  }

  public voidremoveAllNews() {

  // TODO 自动生成方法存根

  newsCache.removeAll();

  }

  }

posted @ 2010-08-12 10:22  Me疯子_(~  阅读(509)  评论(0编辑  收藏  举报