Created
November 13, 2024 04:50
-
-
Save guaracyalima/8d6c21e0fdcde64a268a9421da316502 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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