You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
708 B
XML
27 lines
708 B
XML
7 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<ehcache name="ruoyi">
|
||
|
|
||
|
<!-- 磁盘缓存位置 -->
|
||
|
<diskStore path="java.io.tmpdir"/>
|
||
|
|
||
|
<!-- 默认缓存 -->
|
||
|
<defaultCache
|
||
|
maxEntriesLocalHeap="1000"
|
||
|
eternal="false"
|
||
|
timeToIdleSeconds="3600"
|
||
|
timeToLiveSeconds="3600"
|
||
|
overflowToDisk="false">
|
||
|
</defaultCache>
|
||
|
|
||
|
<!-- 登录记录缓存 锁定10分钟 -->
|
||
|
<cache name="loginRecordCache"
|
||
|
maxEntriesLocalHeap="2000"
|
||
|
eternal="false"
|
||
|
timeToIdleSeconds="600"
|
||
|
timeToLiveSeconds="0"
|
||
|
overflowToDisk="false"
|
||
|
statistics="true">
|
||
|
</cache>
|
||
|
|
||
|
</ehcache>
|
||
|
|