ehcache.xml 963 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">
  4. <diskStore path="java.io.tmpdir"/>
  5. <defaultCache
  6. maxElementsInMemory="10000"
  7. eternal="false"
  8. timeToIdleSeconds="120"
  9. timeToLiveSeconds="120"
  10. maxElementsOnDisk="10000000"
  11. diskExpiryThreadIntervalSeconds="120"
  12. memoryStoreEvictionPolicy="LRU">
  13. <persistence strategy="localTempSwap"/>
  14. </defaultCache>
  15. <cache
  16. name="ehcache"
  17. eternal="false"
  18. timeToIdleSeconds="120"
  19. timeToLiveSeconds="300"
  20. maxEntriesLocalHeap="10000"
  21. maxEntriesLocalDisk="10000000"
  22. diskExpiryThreadIntervalSeconds="120"
  23. memoryStoreEvictionPolicy="LRU">
  24. <persistence strategy="localTempSwap"/>
  25. </cache>
  26. </ehcache>