2010-01-22 10:19:11 -05:00
|
|
|
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="false">
|
2009-01-04 13:28:28 -05:00
|
|
|
|
2011-12-28 23:56:28 -05:00
|
|
|
<!--
|
|
|
|
Persistent disk store location
|
2009-01-04 13:28:28 -05:00
|
|
|
-->
|
2011-12-28 23:56:28 -05:00
|
|
|
<diskStore path="${ehcache.disk.store.dir}" />
|
2009-01-04 13:28:28 -05:00
|
|
|
|
2011-12-28 23:56:28 -05:00
|
|
|
<!--
|
|
|
|
Mandatory Default Cache configuration. These settings will be applied to caches
|
|
|
|
created pragmatically using CacheManager.add(String cacheName).
|
|
|
|
-->
|
|
|
|
<defaultCache
|
|
|
|
maxElementsInMemory="100"
|
|
|
|
eternal="false"
|
|
|
|
timeToIdleSeconds="120"
|
|
|
|
timeToLiveSeconds="120"
|
|
|
|
overflowToDisk="false"
|
|
|
|
diskPersistent="false"
|
|
|
|
memoryStoreEvictionPolicy="LRU"
|
|
|
|
/>
|
2009-01-04 13:28:28 -05:00
|
|
|
|
2011-12-28 23:56:28 -05:00
|
|
|
<!--
|
2011-11-13 03:14:54 -05:00
|
|
|
Short-lived (48 hours) persistent cache for web responses.
|
2011-12-28 23:56:28 -05:00
|
|
|
-->
|
|
|
|
<cache name="web-datasource"
|
|
|
|
maxElementsInMemory="120"
|
|
|
|
maxElementsOnDisk="120"
|
|
|
|
eternal="false"
|
|
|
|
timeToIdleSeconds="172800"
|
|
|
|
timeToLiveSeconds="172800"
|
|
|
|
overflowToDisk="true"
|
|
|
|
diskPersistent="true"
|
|
|
|
memoryStoreEvictionPolicy="LRU"
|
|
|
|
/>
|
|
|
|
|
2009-10-28 11:09:47 -04:00
|
|
|
<!--
|
2011-08-05 02:37:30 -04:00
|
|
|
Very long-lived cache (one month!) anime/series list and episode information.
|
2011-12-28 23:56:28 -05:00
|
|
|
-->
|
|
|
|
<cache name="web-persistent-datasource"
|
|
|
|
maxElementsInMemory="40"
|
|
|
|
maxElementsOnDisk="240"
|
|
|
|
eternal="false"
|
|
|
|
timeToIdleSeconds="2628000"
|
|
|
|
timeToLiveSeconds="2628000"
|
|
|
|
overflowToDisk="true"
|
|
|
|
diskPersistent="true"
|
|
|
|
memoryStoreEvictionPolicy="LRU"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Simple memory cache for calculated checksums. Time to live is 2 hours. This cache is used in EpisodeFormatBindingBean
|
|
|
|
-->
|
|
|
|
<cache name="checksum"
|
|
|
|
maxElementsInMemory="4200"
|
|
|
|
eternal="false"
|
|
|
|
timeToIdleSeconds="7200"
|
|
|
|
timeToLiveSeconds="7200"
|
|
|
|
overflowToDisk="false"
|
|
|
|
diskPersistent="false"
|
|
|
|
memoryStoreEvictionPolicy="LRU"
|
|
|
|
/>
|
|
|
|
|
2009-05-13 14:20:26 -04:00
|
|
|
<!--
|
|
|
|
Short-lived memory cache for resources like icons. This cache is used by ResourceManager.
|
2011-12-28 23:56:28 -05:00
|
|
|
-->
|
|
|
|
<cache name="resource"
|
|
|
|
maxElementsInMemory="40"
|
|
|
|
eternal="false"
|
|
|
|
timeToIdleSeconds="120"
|
|
|
|
timeToLiveSeconds="120"
|
|
|
|
overflowToDisk="false"
|
|
|
|
diskPersistent="false"
|
|
|
|
memoryStoreEvictionPolicy="LRU"
|
|
|
|
/>
|
|
|
|
|
2009-01-04 13:28:28 -05:00
|
|
|
</ehcache>
|