2024-10-08 09:38:54 +08:00
|
|
|
|
/**
|
2025-03-04 10:42:17 +08:00
|
|
|
|
* 开源代码,仅供学习和交流研究使用,商用请联系三丙
|
|
|
|
|
|
* 微信:mohan_88888
|
|
|
|
|
|
* 抖音:程序员三丙
|
|
|
|
|
|
* 付费课程知识星球:https://t.zsxq.com/aKtXo
|
2024-10-08 09:38:54 +08:00
|
|
|
|
*/
|
|
|
|
|
|
package sanbing.jcpp.infrastructure.cache;
|
|
|
|
|
|
|
|
|
|
|
|
import com.github.benmanes.caffeine.cache.Caffeine;
|
|
|
|
|
|
import com.github.benmanes.caffeine.cache.RemovalCause;
|
|
|
|
|
|
import com.github.benmanes.caffeine.cache.Ticker;
|
|
|
|
|
|
import com.github.benmanes.caffeine.cache.Weigher;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
|
|
|
|
|
|
import org.springframework.cache.CacheManager;
|
|
|
|
|
|
import org.springframework.cache.annotation.EnableCaching;
|
|
|
|
|
|
import org.springframework.cache.caffeine.CaffeineCache;
|
|
|
|
|
|
import org.springframework.cache.support.SimpleCacheManager;
|
|
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Arrays;
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
|
|
@ConditionalOnProperty(prefix = "cache", value = "type", havingValue = "caffeine", matchIfMissing = true)
|
|
|
|
|
|
@EnableCaching
|
|
|
|
|
|
@Slf4j
|
|
|
|
|
|
public class JCPPCaffeineCacheConfiguration {
|
|
|
|
|
|
|
|
|
|
|
|
private final CacheSpecsMap configuration;
|
|
|
|
|
|
|
|
|
|
|
|
public JCPPCaffeineCacheConfiguration(CacheSpecsMap configuration) {
|
|
|
|
|
|
this.configuration = configuration;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
|
|
public CacheManager cacheManager() {
|
|
|
|
|
|
log.info("Initializing cache: {} specs {}", Arrays.toString(RemovalCause.values()), configuration.getSpecs());
|
|
|
|
|
|
SimpleCacheManager manager = new SimpleCacheManager();
|
|
|
|
|
|
if (configuration.getSpecs() != null) {
|
|
|
|
|
|
List<CaffeineCache> caches =
|
|
|
|
|
|
configuration.getSpecs().entrySet().stream()
|
|
|
|
|
|
.map(entry -> buildCache(entry.getKey(),
|
|
|
|
|
|
entry.getValue()))
|
|
|
|
|
|
.collect(Collectors.toList());
|
|
|
|
|
|
manager.setCaches(caches);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
manager.initializeCaches();
|
|
|
|
|
|
|
|
|
|
|
|
return manager;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private CaffeineCache buildCache(String name, CacheSpecs cacheSpec) {
|
|
|
|
|
|
|
|
|
|
|
|
final Caffeine<Object, Object> caffeineBuilder
|
|
|
|
|
|
= Caffeine.newBuilder()
|
|
|
|
|
|
.weigher(collectionSafeWeigher())
|
|
|
|
|
|
.maximumWeight(cacheSpec.getMaxSize())
|
|
|
|
|
|
.ticker(ticker());
|
|
|
|
|
|
if (!cacheSpec.getTimeToLiveInMinutes().equals(0)) {
|
|
|
|
|
|
caffeineBuilder.expireAfterWrite(cacheSpec.getTimeToLiveInMinutes(), TimeUnit.MINUTES);
|
|
|
|
|
|
}
|
|
|
|
|
|
return new CaffeineCache(name, caffeineBuilder.build());
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
|
|
public Ticker ticker() {
|
|
|
|
|
|
return Ticker.systemTicker();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private Weigher<? super Object, ? super Object> collectionSafeWeigher() {
|
|
|
|
|
|
return (Weigher<Object, Object>) (key, value) -> {
|
|
|
|
|
|
if (value instanceof Collection) {
|
|
|
|
|
|
return ((Collection<?>) value).size();
|
|
|
|
|
|
}
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|