Skip to content

Instantly share code, notes, and snippets.

@tangyl
Created October 25, 2018 08:10
Show Gist options
  • Save tangyl/8e98a7b0b0d86376f153ea5efbca5c2d to your computer and use it in GitHub Desktop.
Save tangyl/8e98a7b0b0d86376f153ea5efbca5c2d to your computer and use it in GitHub Desktop.
ehcache.xml for play framework
<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