Skip to content

Instantly share code, notes, and snippets.

@h4ck4life
Forked from oscarrenalias/ehcache.xml
Created November 21, 2013 10:06
Show Gist options
  • Save h4ck4life/7579060 to your computer and use it in GitHub Desktop.
Save h4ck4life/7579060 to your computer and use it in GitHub Desktop.
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../config/ehcache.xsd" updateCheck="false">
<!-- This is a default configuration for 256Mb of cached data using the JVM's heap, but it must be adjusted
according to specific requirement and heap sizes -->
<defaultCache
maxBytesLocalHeap="256000000"
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