Files
SpringBoot-Labs/lab-21/lab-21-cache-ehcache/target/classes/ehcache.xml
2019-11-20 20:20:56 +08:00

16 lines
600 B
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">
<!-- users 缓存 -->
<!-- name缓存名 -->
<!-- maxElementsInMemory最大缓存 key 数量 -->
<!-- timeToLiveSeconds缓存过期时长单位-->
<!-- memoryStoreEvictionPolicy缓存淘汰策略 -->
<cache name="users"
maxElementsInMemory="1000"
timeToLiveSeconds="60"
memoryStoreEvictionPolicy="LRU"/> <!-- 缓存淘汰策略 -->
</ehcache>