为什么Spring框架不推荐使用Guava缓存?

问题描述 投票:0回答:1

我想将 spring-cache 与 guava 缓存一起使用,但是我发现 guava 缓存已被 spring 官方文档标记为已弃用。我想知道为什么,他们没有给出一些解释。

https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-caching.html#boot-features-caching-provider-guava

spring spring-boot guava
1个回答
44
投票

Spring 项目决定支持切换到 Caffeine 缓存。

Caffeine 以独立形式主动维护的 Java 8+ 版本取代了 Google Guava 库中的缓存支持。

您可以在 Spring 跟踪器上找到与决策相关的问题:https://github.com/spring-projects/spring-framework/issues/18370 (SPR-13797)

Spring框架github仓库中的相关提交是:https://github.com/spring-projects/spring-framework/commit/2bf9bc312ed1721b5978f88861c29cffc9ea407c

© www.soinside.com 2019 - 2024. All rights reserved.