Skip to content

Instantly share code, notes, and snippets.

@guaracyalima
Created November 13, 2024 04:50
Show Gist options
  • Save guaracyalima/8d6c21e0fdcde64a268a9421da316502 to your computer and use it in GitHub Desktop.
Save guaracyalima/8d6c21e0fdcde64a268a9421da316502 to your computer and use it in GitHub Desktop.
<ehcache xmlns:xsi="<http://www.w3.org/2001/XMLSchema-instance>"
xsi:noNamespaceSchemaLocation="<http://ehcache.org/ehcache.xsd>"
monitoring="autodetect"
dynamicConfig="true">
<diskStore path="java.io.tmpdir/ehcache" />
<cache name="productCache"
maxEntriesLocalHeap="1000"
maxEntriesLocalDisk="5000"
eternal="false"
timeToIdleSeconds="300"
timeToLiveSeconds="600"
overflowToDisk="true"
diskPersistent="true"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LFU"/>
<!-- <cache name="productCache"-->
<!-- maxEntriesLocalHeap="1000"-->
<!-- maxEntriesLocalDisk="100000"-->
<!-- eternal="false"-->
<!-- timeToIdleSeconds="300"-->
<!-- timeToLiveSecond="600"-->
<!-- overflowToDisk="true"-->
<!-- diskPeristent="true"-->
<!-- memoryStoreEvictionPolicy="LRU"/>-->
<!-- <cache name="orderCache"-->
<!-- maxEntriesLocalHeap="2000"-->
<!-- timeToIdleSeconds="180"-->
<!-- timeToLiveSeconds="360"-->
<!-- memoryStoreEvictionPolicy="LRU" />-->
</ehcache>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment