27 lines
728 B
XML
27 lines
728 B
XML
<?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>
|
|
|
|
<!-- 登录记录缓存 锁定10分钟 -->
|
|
<cache name="loginRecordCache"
|
|
maxEntriesLocalHeap="2000"
|
|
eternal="false"
|
|
timeToIdleSeconds="600"
|
|
timeToLiveSeconds="0"
|
|
overflowToDisk="false"
|
|
statistics="true">
|
|
</cache>
|
|
|
|
</ehcache>
|
|
|