mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-12-27 19:07:28 +00:00
17 lines
579 B
XML
17 lines
579 B
XML
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="ehcache.xsd"
|
|
updateCheck="false">
|
|
<diskStore path="java.io.tmpdir"/>
|
|
|
|
<!-- objects are evicted from the cache every 60 seconds -->
|
|
<cache name="vets"
|
|
timeToLiveSeconds="60"
|
|
maxElementsInMemory="100"
|
|
eternal="false"
|
|
overflowToDisk="false"
|
|
maxElementsOnDisk="10000000"
|
|
diskPersistent="false"
|
|
diskExpiryThreadIntervalSeconds="1"
|
|
memoryStoreEvictionPolicy="LRU" />
|
|
|
|
</ehcache>
|