forked from Archives/Athou_commafeed
21 lines
890 B
XML
21 lines
890 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
|
|
updateCheck="false" monitoring="autodetect" dynamicConfig="false">
|
|
|
|
<diskStore path="java.io.tmpdir" />
|
|
|
|
<defaultCache maxEntriesLocalHeap="1000000" eternal="false"
|
|
timeToIdleSeconds="120" timeToLiveSeconds="120" maxEntriesLocalDisk="10000000"
|
|
diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU">
|
|
<persistence strategy="localTempSwap" />
|
|
</defaultCache>
|
|
|
|
<cache name="com.commafeed.backend.model.FeedEntryContent"
|
|
maxEntriesLocalHeap="1000" eternal="false" timeToIdleSeconds="120"
|
|
timeToLiveSeconds="120" maxEntriesLocalDisk="100000"
|
|
diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU">
|
|
<persistence strategy="localTempSwap" />
|
|
</cache>
|
|
|
|
</ehcache> |