Created
October 25, 2018 08:10
-
-
Save tangyl/8e98a7b0b0d86376f153ea5efbca5c2d to your computer and use it in GitHub Desktop.
ehcache.xml for play framework
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="../config/ehcache.xsd" updateCheck="false"> | |
<defaultCache | |
maxElementsInMemory="10000000" | |
eternal="false" | |
timeToIdleSeconds="120" | |
timeToLiveSeconds="120" | |
overflowToDisk="false" | |
maxElementsOnDisk="10000000" | |
diskPersistent="false" | |
diskExpiryThreadIntervalSeconds="120" | |
memoryStoreEvictionPolicy="LRU" | |
/> | |
</ehcache> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment