Ehcache.xml used in Spring project
<?xml version="1.0" encoding="UTF-8"?> | |
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd" | |
updateCheck="false"> | |
<!-- Default Cache Configuration, with name 'default' --> | |
<defaultCache maxElementsInMemory="50" eternal="false" | |
overflowToDisk="false" memoryStoreEvictionPolicy="LFU" /> | |
<cache name="employeeCache" maxElementsInMemory="50" eternal="false" | |
overflowToDisk="false" memoryStoreEvictionPolicy="LFU" /> | |
</ehcache> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment