-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
605e6d5
commit 5b403ab
Showing
1 changed file
with
63 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,77 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ehcache updateCheck="false" name="defaultCache"> | ||
<ehcache updateCheck="false" name="defaultCache" monitoring="autodetect" dynamicConfig="true"> | ||
|
||
<diskStore path="temp/jeebase/ehcache" /> | ||
|
||
<!-- 默认缓存配置. 自动失效:最后一次访问时间间隔300秒失效,若没有访问过自创建时间600秒失效。--> | ||
<defaultCache maxEntriesLocalHeap="1000" eternal="false" timeToIdleSeconds="300" timeToLiveSeconds="600" | ||
overflowToDisk="true" statistics="true"/> | ||
|
||
<!-- 系统缓存 --> | ||
<cache name="sysCache" maxEntriesLocalHeap="1000" eternal="true" overflowToDisk="true" statistics="true"/> | ||
<!-- 系统默认缓存 --> | ||
<defaultCache | ||
maxElementsInMemory="50000" | ||
clearOnFlush="false" | ||
eternal="false" | ||
timeToIdleSeconds="3600" | ||
timeToLiveSeconds="3600" | ||
overflowToDisk="true" | ||
diskSpoolBufferSizeMB="1024" | ||
maxElementsOnDisk="100000" | ||
diskPersistent="false" | ||
diskExpiryThreadIntervalSeconds="120" | ||
memoryStoreEvictionPolicy="LFU" | ||
transactionalMode="off"> | ||
</defaultCache> | ||
|
||
<!-- 系统全局变量:永不过期--> | ||
<cache name="systemCache" | ||
maxElementsInMemory="50000" | ||
eternal="true" | ||
clearOnFlush="false" | ||
overflowToDisk="true" | ||
diskSpoolBufferSizeMB="1024" | ||
maxElementsOnDisk="100000" | ||
diskPersistent="false" | ||
diskExpiryThreadIntervalSeconds="120" | ||
memoryStoreEvictionPolicy="LFU" | ||
transactionalMode="off"> | ||
</cache> | ||
|
||
<!-- 用户缓存 --> | ||
<!-- | ||
<cache name="userCache" maxEntriesLocalHeap="1000" eternal="true" overflowToDisk="true" statistics="true"/> | ||
|
||
--> | ||
|
||
<!-- 内容管理模块缓存 --> | ||
<!-- | ||
<cache name="cmsCache" maxEntriesLocalHeap="1000" eternal="true" overflowToDisk="true" statistics="true"/> | ||
--> | ||
|
||
<!-- 简单页面缓存 --> | ||
<cache name="pageCachingFilter" maxEntriesLocalHeap="1000" eternal="false" timeToIdleSeconds="120" | ||
timeToLiveSeconds="120" overflowToDisk="true" memoryStoreEvictionPolicy="LFU" statistics="true"/> | ||
<!-- <cache name="pageCachingFilter" maxEntriesLocalHeap="1000" eternal="false" timeToIdleSeconds="120" | ||
timeToLiveSeconds="120" overflowToDisk="true" memoryStoreEvictionPolicy="LFU" statistics="true"/>--> | ||
|
||
<!-- 系统活动会话缓存 --> | ||
<cache name="activeSessionsCache" maxEntriesLocalHeap="10000" eternal="true" overflowToDisk="true" | ||
diskPersistent="true" diskExpiryThreadIntervalSeconds="600" statistics="true"/> | ||
|
||
<!-- <cache name="activeSessionsCache" maxEntriesLocalHeap="10000" eternal="true" overflowToDisk="true" | ||
diskPersistent="true" diskExpiryThreadIntervalSeconds="600" statistics="true"/>--> | ||
|
||
<!-- | ||
maxElementsInMemory="10000" //Cache中最多允许保存的数据对象的数量 | ||
external="false" //缓存中对象是否为永久的,如果是,超时设置将被忽略,对象从不过期 | ||
timeToLiveSeconds="3600" //缓存的存活时间,从开始创建的时间算起 | ||
timeToIdleSeconds="3600" //多长时间不访问该缓存,那么ehcache 就会清除该缓存 | ||
这两个参数很容易误解,看文档根本没用,我仔细分析了ehcache的代码。结论如下: | ||
1、timeToLiveSeconds的定义是:以创建时间为基准开始计算的超时时长; | ||
2、timeToIdleSeconds的定义是:在创建时间和最近访问时间中取出离现在最近的时间作为基准计算的超时时长; | ||
3、如果仅设置了timeToLiveSeconds,则该对象的超时时间=创建时间+timeToLiveSeconds,假设为A; | ||
4、如果没设置timeToLiveSeconds,则该对象的超时时间=min(创建时间,最近访问时间)+timeToIdleSeconds,假设为B; | ||
5、如果两者都设置了,则取出A、B最少的值,即min(A,B),表示只要有一个超时成立即算超时。 | ||
overflowToDisk="true" //内存不足时,是否启用磁盘缓存 | ||
diskSpoolBufferSizeMB //设置DiskStore(磁盘缓存)的缓存区大小。默认是30MB。每个Cache都应该有自己的一个缓冲区 | ||
maxElementsOnDisk //硬盘最大缓存个数 | ||
diskPersistent //是否缓存虚拟机重启期数据The default value is false | ||
diskExpiryThreadIntervalSeconds //磁盘失效线程运行时间间隔,默认是120秒。 | ||
memoryStoreEvictionPolicy="LRU" //当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使用)。你可以设置为FIFO(先进先出)或是LFU(较少使用)。 | ||
clearOnFlush //内存数量最大时是否清除 | ||
maxEntriesLocalHeap="0" | ||
maxEntriesLocalDisk="1000" | ||
--> | ||
</ehcache> |