1. 程式人生 > >ehcache.xml 配置文件備忘錄(不建議出現中文註釋,此處備忘)

ehcache.xml 配置文件備忘錄(不建議出現中文註釋,此處備忘)

名稱 lns 配置文件 start sch mes sin ear eat

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../config/ehcache.xsd" updateCheck="false">

<diskStore path="java.io.tmpdir"/>
<!--
Mandatory Default Cache configuration. These settings will be applied to caches
created programmtically using CacheManager.add(String cacheName)
-->
<!--
name: 緩存名稱。
maxElementsInMemory:緩存最大個數。
eternal: 對象是否永久有效,一但設置了,timeout 將不起作用。
timeToIdleSeconds:設置對象在失效前的允許閑置時間(單位:秒)。僅當 eternal=false 對象不是永久有效時使用,可選屬性,默認值是 0,也就是可閑置時間無窮大。
timeToLiveSeconds:設置對象在失效前允許存活時間(單位:秒)。最大時間介於創建時間和失效時間之間。僅當 eternal=false 對象不是永久有效時使用,默認是 0.,也就是對象存活時間無窮大。
overflowToDisk:當內存中對象數量達到 maxElementsInMemory 時,Ehcache 將會對象寫到磁盤中。
diskSpoolBufferSizeMB:這個參數設置 DiskStore(磁盤緩存)的緩存區大小。默認是 30MB。每個 Cache 都應該有自己的一個緩沖區。
maxElementsOnDisk:硬盤最大緩存個數。
diskPersistent:是否緩存虛擬機重啟期數據 Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
diskExpiryThreadIntervalSeconds:磁盤失效線程運行時間間隔,默認是 120 秒。
memoryStoreEvictionPolicy:當達到 maxElementsInMemory 限制時,Ehcache 將會根據指定的策略去清理內存。默認策略是 LRU(最近最少使用)。你可以設置為 FIFO(先進先出)或是 LFU(較少使用)。
clearOnFlush:內存數量最大時是否清除。
-->
<defaultCache
maxElementsInMemory="10000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
overflowToDisk="true"
maxElementsOnDisk="10000000"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU"
/>
</ehcache>

ehcache.xml 配置文件備忘錄(不建議出現中文註釋,此處備忘)