ehcache.xml配置文件

<?xml version="1.0" encoding="UTF-8"?>  
<ehcache updateCheck="false"  name="shirocache">  
    <diskStore path="java.io.tmpdir"/>  
    <defaultCache  
       maxElementsInMemory="10000"  
       eternal="false"  
       timeToIdleSeconds="120"  
       timeToLiveSeconds="120"  
       overflowToDisk="false"  
       diskPersistent="false"  
       diskExpiryThreadIntervalSeconds="120"  
       />  
    <!-- 登录记录缓存 锁定5分钟 -->  
    <cache name="passwordRetryCache"  
           maxEntriesLocalHeap="2000"  
           eternal="false"  
           timeToIdleSeconds="300"  
           timeToLiveSeconds="0"  
           overflowToDisk="false"  
           statistics="true">  
    </cache>  
    <cache name="authorizationCache"  
           maxEntriesLocalHeap="2000"  
           eternal="false"  
           timeToIdleSeconds="3600"  
           timeToLiveSeconds="0"  
           overflowToDisk="false"  
           statistics="true">  
    </cache>  
    <cache name="authenticationCache"  
           maxEntriesLocalHeap="2000"  
           eternal="false"  
           timeToIdleSeconds="3600"  
           timeToLiveSeconds="0"  
           overflowToDisk="false"  
           statistics="true">  
    </cache>  
    <cache name="shiro-activeSessionCache"  
           maxEntriesLocalHeap="2000"  
           eternal="false"  
           timeToIdleSeconds="3600"  
           timeToLiveSeconds="0"  
           overflowToDisk="false"  
           statistics="true">  
    </cache>  
    <cache name="shiro_cache"  
           maxElementsInMemory="2000"  
           maxEntriesLocalHeap="2000"  
           eternal="false"  
           timeToIdleSeconds="0"  
           timeToLiveSeconds="0"  
           maxElementsOnDisk="0"  
           overflowToDisk="true"  
           memoryStoreEvictionPolicy="FIFO"  
           statistics="true">  
    </cache>  
</ehcache> 

 

posted @ 2017-10-26 15:08  夜西门吹雪孤城花满楼  阅读(171)  评论(0编辑  收藏  举报