ehcache.xml 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ehcache name="dataCache">
  3. <defaultCache maxElementsInMemory="10000" eternal="false"
  4. timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true"
  5. maxElementsOnDisk="10000000" diskPersistent="false"
  6. diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU" />
  7. <cache name="userPrivsCache" maxElementsInMemory="2000"
  8. maxElementsOnDisk="0" eternal="false" overflowToDisk="false"
  9. timeToIdleSeconds="0" timeToLiveSeconds="0" memoryStoreEvictionPolicy="LFU" />
  10. <cache name="allPrivsCache" maxElementsInMemory="1000"
  11. maxElementsOnDisk="0" eternal="false" overflowToDisk="false"
  12. timeToIdleSeconds="0" timeToLiveSeconds="0" memoryStoreEvictionPolicy="LFU" />
  13. <cache name="allParameterCodesCache" maxElementsInMemory="500"
  14. maxElementsOnDisk="0" eternal="false" overflowToDisk="false"
  15. timeToIdleSeconds="0" timeToLiveSeconds="0" memoryStoreEvictionPolicy="LFU" />
  16. <cache name="authsCache" maxElementsInMemory="2000"
  17. maxElementsOnDisk="0" eternal="false" overflowToDisk="false"
  18. timeToIdleSeconds="0" timeToLiveSeconds="0" memoryStoreEvictionPolicy="LFU" />
  19. <!-- 上面为基本缓存,不可变动 -->
  20. <cache name="errorBuildingsCache" maxElementsInMemory="2000"
  21. maxElementsOnDisk="0" eternal="false" overflowToDisk="false"
  22. timeToIdleSeconds="0" timeToLiveSeconds="0" memoryStoreEvictionPolicy="LFU" />
  23. </ehcache>