码迷,mamicode.com
首页 > 其他好文 > 详细

Ehcahe独立使用

时间:2017-02-13 12:47:09      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:false   null   xmlns   manage   path   sha   list   sch   cti   

<?xml version="1.0" encoding="utf-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache.xsd">
<diskStore path="java.io.tmpdir" />
<defaultCache maxElementsInMemory="1000" eternal="false"
timeToIdleSeconds="600" timeToLiveSeconds="600" overflowToDisk="true"
memoryStoreEvictionPolicy="LRU" />

<cache name="aaa" maxElementsInMemory="5000" eternal="false"
timeToLiveSeconds="7200" timeToIdleSeconds="7200" overflowToDisk="true" />
</ehcache>

private static CacheManager cacheManager = null;

private static Cache ehcache = null;
static {
cacheManager = CacheManager.create();
ehcache = cacheManager.getCache("aaa");
}

 

Element element = new Element("shaoer", list);
ehcache.put(element);

......................

 

Ehcahe独立使用

标签:false   null   xmlns   manage   path   sha   list   sch   cti   

原文地址:http://www.cnblogs.com/coderdxj/p/6393081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!