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"
|
2009-01-24 17:29:38 -08:00
|
|
|
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>
|