标签:turn 1.0 rri tps main coding 轻量 public max
EhCache 是一个纯Java的进程内缓存框架,具有快速、精干等特点,是Hibernate中默认CacheProvider。Ehcache是一种广泛使用的开源Java分布式缓存。主要面向通用缓存,Java EE和轻量级容器。它具有内存和磁盘存储,缓存加载器,缓存扩展,缓存异常处理程序,一个gzip缓存servlet过滤器,支持REST和SOAP api等特点。
代码地址:https://github.com/bjlhx15/common/tree/master/spring-cache/spring-ehcache
1、pom
2、启动类注解
3、业务类注解
4、配置
# 配置ehcache缓存
spring:
cache:
jcache:
config: classpath:ehcache3.xml ###attention,这里是jcache
5、ehchahe配置文件【更多】
<?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.xs"> <!-- http://www.ehcache.org/documentation/3.0/xml.html --> <!--5、<cache-template>可以让你创建一个抽象的<cache>配置文件,该配置文件可以进一步的被扩展。 --> <cache-template name="heap-cache"> <resources> <!-- 在堆中申请2000个entries --> <heap unit="entries">2000</heap> <!-- 最大非堆内存 --> <offheap unit="MB">100</offheap> </resources> </cache-template> <cache alias="user" uses-template="heap-cache"> <expiry> <!--tti: time to idle, 最大空闲时间 --> <!-- <ttl>, time to live; 最大存活时间 --> <!-- <class>, 自定义的Expiry实现 --> <!-- <none>, 不过期 --> <!-- minutes、seconds --> <ttl unit="seconds">10</ttl> </expiry> <!-- <ehcache:key-type>java.lang.Long</ehcache:key-type> --> <!-- <ehcache:value-type>com.pany.domain.Customer</ehcache:value-type> --> <!-- <ehcache:heap unit="entries">200</ehcache:heap> --> </cache> </config>
Caffeine是使用Java8对Guava缓存的重写版本,在Spring Boot 2.0中将取代Guava。如果出现Caffeine,CaffeineCacheManager将会自动配置。使用spring.cache.cache-names属性可以在启动时创建缓存,并可以通过以下配置进行自定义(按顺序):
代码地址:https://github.com/bjlhx15/common/tree/master/spring-cache/spring-caffeine
1、pom
2、启动类注解
3、业务类注解
4、配置
spring:
cache:
cache-names: user
caffeine:
spec: initialCapacity=50,maximumSize=500,expireAfterWrite=10s,refreshAfterWrite=5s
其中spec配置参数
initialCapacity=[integer]: 初始的缓存空间大小
maximumSize=[long]: 缓存的最大条数
maximumWeight=[long]: 缓存的最大权重
expireAfterAccess=[duration]: 最后一次写入或访问后经过固定时间过期
expireAfterWrite=[duration]: 最后一次写入后经过固定时间过期
refreshAfterWrite=[duration]: 创建缓存或者最近一次更新缓存后经过固定的时间间隔,刷新缓存
weakKeys: 打开key的弱引用
weakValues:打开value的弱引用
softValues:打开value的软引用
recordStats:开发统计功能
注意:如果使用了refreshAfterWrite配置还必须指定一个CacheLoader,如:
package com.lhx.spring.cache.caffeine; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import com.github.benmanes.caffeine.cache.CacheLoader; @Configuration public class CacheLoaderSelf { /** * 必须要指定这个Bean,refreshAfterWrite=5s这个配置属性才生效 * */ @Bean public CacheLoader<Object, Object> cacheLoader() { CacheLoader<Object, Object> cacheLoader = new CacheLoader<Object, Object>() { @Override public Object load(Object key) throws Exception { return null; } // 重写这个方法将oldValue值返回回去,进而刷新缓存 @Override public Object reload(Object key, Object oldValue) throws Exception { return oldValue; } }; return cacheLoader; } }
注意:
007-spring cache-缓存实现-02-springboot ehcahe3实现、springboot caffeine实现
标签:turn 1.0 rri tps main coding 轻量 public max
原文地址:https://www.cnblogs.com/bjlhx/p/9175523.html