24 lines
748 B
XML
24 lines
748 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ehcache>
|
|
<diskStore path="/opt/fit2cloud/ehcache/"/>
|
|
<!--默认缓存策略-->
|
|
<defaultCache
|
|
maxElementsInMemory="10000"
|
|
eternal="false"
|
|
timeToIdleSeconds="1800"
|
|
timeToLiveSeconds="1800"
|
|
overflowToDisk="true"
|
|
maxElementsOnDisk="10000000"
|
|
diskPersistent="false"
|
|
diskExpiryThreadIntervalSeconds="120"
|
|
memoryStoreEvictionPolicy="LRU"
|
|
/>
|
|
<!--缓存用户token-->
|
|
<cache name="token-cache"
|
|
maxElementsInMemory="10000"
|
|
eternal="true"
|
|
diskPersistent="true"
|
|
overflowToDisk="true"
|
|
memoryStoreEvictionPolicy="LRU"
|
|
/>
|
|
</ehcache> |