java 进程缓存之caffeine
Posted 龙畅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 进程缓存之caffeine相关的知识,希望对你有一定的参考价值。
https://www.jianshu.com/p/5c04d0cd3c1f
使用举例:
https://www.cnblogs.com/CrankZ/p/10889859.html
引入maven工程:
https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine/2.8.1
<!-- https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine -->
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>2.8.1</version>
</dependency>
引入gradle工程:
// https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine
compile group: \'com.github.ben-manes.caffeine\', name: \'caffeine\', version: \'2.8.1\'
以上是关于java 进程缓存之caffeine的主要内容,如果未能解决你的问题,请参考以下文章
spring boot:使用spring cache+caffeine做进程内缓存(本地缓存)(spring boot 2.3.1)