1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ehcache name="ruoyi" updateCheck="false">
-
- <diskStore path="java.io.tmpdir"/>
-
-
-
-
-
-
-
-
-
-
- <defaultCache
- maxEntriesLocalHeap="1000"
- eternal="false"
- timeToIdleSeconds="3600"
- timeToLiveSeconds="3600"
- overflowToDisk="false">
- </defaultCache>
-
- <cache name="loginRecordCache"
- maxEntriesLocalHeap="2000"
- eternal="false"
- timeToIdleSeconds="600"
- timeToLiveSeconds="0"
- overflowToDisk="false"
- statistics="true">
- </cache>
-
- <cache name="sys-userCache"
- maxEntriesLocalHeap="10000"
- overflowToDisk="false"
- eternal="false"
- diskPersistent="false"
- timeToLiveSeconds="0"
- timeToIdleSeconds="0"
- statistics="true">
- </cache>
-
- <cache name="sys-config"
- maxEntriesLocalHeap="1000"
- eternal="true"
- overflowToDisk="true"
- statistics="true">
- </cache>
-
-
- <cache name="shiro-activeSessionCache"
- maxElementsInMemory="10000"
- overflowToDisk="true"
- eternal="true"
- timeToLiveSeconds="0"
- timeToIdleSeconds="0"
- diskPersistent="true"
- diskExpiryThreadIntervalSeconds="600">
- </cache>
-
- </ehcache>
-
|