ehcache.xml 503 B

123456789101112
  1. <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true"
  3. monitoring="autodetect" dynamicConfig="true">
  4. <diskStore path="java.io.tmpdir" />
  5. <defaultCache maxElementsInMemory="10000"
  6. maxElementsOnDisk="0" eternal="false" overflowToDisk="true"
  7. diskPersistent="false" timeToIdleSeconds="0" timeToLiveSeconds="1"
  8. diskSpoolBufferSizeMB="50" diskExpiryThreadIntervalSeconds="1200"
  9. memoryStoreEvictionPolicy="LFU" />
  10. </ehcache>