Files
commafeed/src/main/resources/ehcache.xml

21 lines
890 B
XML
Raw Normal View History

2013-06-05 18:38:11 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
2013-06-05 19:16:47 +02:00
updateCheck="false" monitoring="autodetect" dynamicConfig="false">
2013-06-05 18:38:11 +02:00
<diskStore path="java.io.tmpdir" />
2013-06-06 08:50:15 +02:00
<defaultCache maxEntriesLocalHeap="1000000" eternal="false"
2013-06-05 18:38:11 +02:00
timeToIdleSeconds="120" timeToLiveSeconds="120" maxEntriesLocalDisk="10000000"
diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU">
<persistence strategy="localTempSwap" />
</defaultCache>
2013-06-06 08:50:15 +02:00
<cache name="com.commafeed.backend.model.FeedEntryContent"
maxEntriesLocalHeap="1000" eternal="false" timeToIdleSeconds="120"
timeToLiveSeconds="120" maxEntriesLocalDisk="100000"
diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU">
2013-06-05 18:38:11 +02:00
<persistence strategy="localTempSwap" />
</cache>
2013-06-06 08:50:15 +02:00
2013-06-05 18:38:11 +02:00
</ehcache>