You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?xml version="1.0" encoding="UTF-8" ?>
- <eh:config
- xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
- xmlns:eh='http://www.ehcache.org/v3'
- xsi:schemaLocation="http://www.ehcache.org/v3 https://www.ehcache.org/schema/ehcache-core-3.3.xsd">
- <!--指定缓存目录-->
- <eh:persistence directory="${java.io.tmpdir}/cache-data"/>
-
- <!--缓存模板-->
- <eh:cache-template name="default">
- <eh:expiry>
- <eh:ttl unit="seconds">600</eh:ttl>
- </eh:expiry>
- <eh:resources>
- <!--堆内内存可以放2000个条目,超出部分堆外100MB-->
- <eh:heap unit="entries">2000</eh:heap>
- <eh:offheap unit="MB">100</eh:offheap>
- </eh:resources>
- </eh:cache-template>
-
- <!--实际的缓存区间,继承了default缓存模板,user完全使用模板默认-->
- <eh:cache alias="user" uses-template="default"/>
-
- </eh:config>
|