You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					
					
						
							28 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							1.1 KiB
						
					
					
				| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <config xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
 | |
|         xmlns='http://www.ehcache.org/v3'
 | |
|         xsi:schemaLocation="http://www.ehcache.org/v3 http://www.ehcache.org/schema/ehcache-core.xsd">
 | |
| 
 | |
|     <!-- 硬盘缓存路径-->
 | |
|     <persistence directory="/app-cache/wx-cache-data"/>
 | |
| 
 | |
|     <cache-template name="cache-template">
 | |
|         <key-type>java.lang.String</key-type>
 | |
|         <value-type>java.lang.String</value-type>
 | |
|         <expiry>
 | |
|             <!--最大存活时间 60s-->
 | |
|             <ttl unit="seconds">60</ttl>
 | |
|         </expiry>
 | |
|         <resources>
 | |
|             <!--注意金字塔配置-->
 | |
|             <!--堆内缓存 50M-->
 | |
|             <heap unit="MB">50</heap>
 | |
|             <!--堆外缓存 100M-->
 | |
|             <offheap unit="MB">100</offheap>
 | |
|             <!--硬盘缓存 persistent=“true” 下次重启从磁盘读取数据-->
 | |
|             <disk persistent="true" unit="MB">200</disk>
 | |
|         </resources>
 | |
|     </cache-template>
 | |
| 
 | |
|     <cache alias="default_cache" uses-template="cache-template"/>
 | |
| </config>
 | |
| 
 |