ehcache.xml 2.1 KB
<?xml version="1.0" encoding="UTF-8"?>  
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">  
     
    <diskStore path="java.io.tmpdir"/>  
      
    <!-- 默认缓存 -->  
    <defaultCache  
           maxElementsInMemory="1000"  
           eternal="false"  
           timeToIdleSeconds="120"  
           timeToLiveSeconds="120"  
           overflowToDisk="false"/>  
             
    <!-- 用户缓存
    	maxElementsInMemory:内存缓存中最多可以存放的元素数量;
    						若overflowToDisk=false,则根据memoryStoreEvictionPolicy策略替换Cache中原有的元素。
    						若overflowToDisk=true,则会将Cache中多出的元素放入磁盘文件中。
    	eternal:缓存中对象是否永久有效,即是否永驻内存,true时将忽略timeToIdleSeconds和timeToLiveSeconds
    	timeToIdleSeconds:存数据在失效前的允许闲置时间(单位:秒)
    	timeToLiveSeconds:缓存数据在失效前的允许存活时间(单位:秒),仅当eternal=false时使用,默认值是0表示可存活时间无穷大,即Cache中的某元素从创建到清楚的生存时间,也就是说从创建开始计时,当超过这个时间时,此元素将从Cache中清除。
    	overflowToDisk:内存不足时,是否启用磁盘缓存
    	memoryStoreEvictionPolicy:内存存储与释放策略
     -->      
    <cache name="userCache"   
           maxElementsInMemory="100000"
           eternal="false"  
           timeToIdleSeconds="10800"  
           timeToLiveSeconds="10800"  
           overflowToDisk="false"   
           memoryStoreEvictionPolicy="LRU"/> 
    <cache name="tokenCache"   
           maxElementsInMemory="100000"
           eternal="false"  
           timeToIdleSeconds="0"  
           timeToLiveSeconds="0"  
           overflowToDisk="false"   
           memoryStoreEvictionPolicy="LRU"/>
     <cache name="dbServerCache"   
           maxElementsInMemory="100000"
           eternal="false"  
           timeToIdleSeconds="0"  
           timeToLiveSeconds="0"  
           overflowToDisk="false"   
           memoryStoreEvictionPolicy="LRU"/>
</ehcache>