首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

ehchahe 事例

2013-02-02 
ehchahe 例子package testimport net.sf.ehcache.Cacheimport net.sf.ehcache.CacheManagerimport net.

ehchahe 例子
package test;

import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Element;


public class TestEhCache {

public static void main(String[] args) throws InterruptedException {
CacheManager singletonManager = new CacheManager();
Cache cache = new Cache("00", 1, false, false, 10, 10);
singletonManager.addCache(cache);

cache.put(new Element("1", "1"));
Element el = cache.get("1");
if(el!=null){
System.out.println("1:"+ el.getValue());
}
cache.put(new Element("2", "2"));
el = cache.get("1");
if(el!=null){
System.out.println("1:"+ el.getValue());
}else{
System.out.println("1:null");
}

el = cache.get("2");
if(el!=null){
System.out.println("2:"+ el.getValue());
}

Thread.sleep(10000);

el = cache.get("2");
if(el!=null){
System.out.println("2:"+ el.getValue());
}else{
System.out.println("2:null");
}


}

}

热点排行