album/etc/ehcache.xml

21 lines
566 B
XML
Raw Normal View History

2009-01-19 23:14:26 -08:00
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache-1.5.0.xsd">
<diskStore path="java.io.tmpdir"/>
<defaultCache eternal="false" maxElementsInMemory="200" overflowToDisk="false" />
<cache
name="imageCache"
maxElementsInMemory="1"
2009-01-19 23:14:26 -08:00
maxElementsOnDisk="5000"
eternal="true"
overflowToDisk="true"
diskPersistent="true"
diskSpoolBufferSizeMB="20"
diskExpiryThreadIntervalSeconds="1"
memoryStoreEvictionPolicy="LFU"/>
</ehcache>