Created
May 24, 2012 10:19
-
-
Save eivinhb/2780709 to your computer and use it in GitHub Desktop.
Ehcache used in blogpost
This file contains 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> | |
<diskStore path="java.io.tmpdir"/> | |
<defaultCache | |
name="name_of_cache" | |
maxEntriesLocalHeap="1000" | |
eternal="false" | |
timeToIdleSeconds="120" | |
timeToLiveSeconds="120" | |
overflowToDisk="true" | |
maxEntriesLocalDisk="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