yzt
2023-05-08 24e1c6a1c3d5331b5a4f1111dcbae3ef148eda1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<ehcache updateCheck="false" name="hibernateCache">
 
    <diskStore path="java.io.tmpdir/ehcache/lats/hibernate" />
 
    <!-- DefaultCache setting. -->
    <defaultCache maxEntriesLocalHeap="10000" eternal="false" timeToIdleSeconds="300" timeToLiveSeconds="600"
                  overflowToDisk="true" maxEntriesLocalDisk="100000" />
 
    <!-- Special objects setting. -->
    <cache name="com.topman.lats.entity.operate.Operator" maxEntriesLocalHeap="1000" eternal="true"
           overflowToDisk="true" maxEntriesLocalDisk="10000" />
    <cache name="com.topman.lats.entity.lotteryperiod.LotteryPeriod" maxEntriesLocalHeap="1000" eternal="true"
           overflowToDisk="true" maxEntriesLocalDisk="10000" />
    <cache name="com.topman.lats.entity.agent.AgentInfo" maxEntriesLocalHeap="100" eternal="true"
           overflowToDisk="true" maxEntriesLocalDisk="1000" />
    <cache name="com.topman.lats.entity.terminal.TerminalInfo" maxEntriesLocalHeap="100" eternal="true"
           overflowToDisk="true" maxEntriesLocalDisk="1000" />
</ehcache>