caffeine缓存失效时间设置
Posted ISaiSai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了caffeine缓存失效时间设置相关的知识,希望对你有一定的参考价值。
两种设置方法
Yml文件
spring:
cache:
type: caffeine
caffeine:
spec: maximumSize=500,expireAfterWrite=5s
config 文件
package com.example.demo;
import com.github.benmanes.caffeine.cache.Caffeine;
import org.springframework.cache.CacheManager;
import org.springframework.cache.caffeine.CaffeineCacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.concurrent.TimeUnit;
@Configuration
public class CacheConfig
@Bean("caffeineCacheManager")
public CacheManager cacheManager()
CaffeineCacheManager cacheManager = new CaffeineCacheManager();
cacheManager.setCaffeine(Caffeine.newBuilder()
// 设置最后一次写入或访问后经过固定时间过期
.expireAfterAccess(10, TimeUnit.SECONDS)
// 初始的缓存空间大小
.initialCapacity(100)
// 缓存的最大条数
.maximumSize(1000));
return cacheManager;
以上是关于caffeine缓存失效时间设置的主要内容,如果未能解决你的问题,请参考以下文章
(很全面)SpringBoot 使用 Caffeine 本地缓存
springboot,redis,caffeine二级缓存搭建