Spring Boot 中使用Caffeine快取的簡單例子
Caffeine 快取是 Java 的高效能快取庫。本文簡單記錄下 Caffeine 快取的用法。
依賴配置
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency></dependencies>
程式碼配置
我們需要初始化 Caffeine 物件以及 Caffeine 快取管理器。
@Configurationpublic class CaffeineConfig { @Bean public Caffeine<Object, Object> caffeine() { return Caffeine.newBuilder().expireAfterWrite(60, TimeUnit.MINUTES); } @Bean public CacheManager cacheManager(Caffeine<Object, Object> caffeine) { CaffeineCacheManager caffeineCacheManager = new CaffeineCacheManager(); caffeineCacheManager.setCaffeine(caffeine); return caffeineCacheManager; }}
使用快取
首先,我們建立一個 Service.
@Service@Slf4jpublic class AddressService { private static final Map<Long, AddressDTO> ADDRESS_TABLE = new HashMap<>(); static { ADDRESS_TABLE.put(1L, new AddressDTO(1, "廣東")); ADDRESS_TABLE.put(2L, new AddressDTO(2, "深圳")); ADDRESS_TABLE.put(3L, new AddressDTO(3, "坂田")); } @Cacheable(value = "address_cache", key = "#addressId") public AddressDTO getAddress(long addressId) { log.info("AddressService getAddress, addressId: {}", addressId); return ADDRESS_TABLE.get(addressId); }}
其次,我們建立一個 Controller.
@RestControllerpublic class CaffeineController { @Autowired private AddressService addressService; @Autowired private CacheManager cacheManager; @GetMapping("/{addressId}") public AddressDTO getAddress(@PathVariable long addressId) { return addressService.getAddress(addressId); } @GetMapping("/cache/{addressId}") public AddressDTO findAddressFromCache(@PathVariable long addressId) { Cache addressCache = cacheManager.getCache("address_cache"); if (addressCache != null) { return (AddressDTO)addressCache.get(addressId).get(); } return null; }}
然後就可以測試了。我們根據列印的日誌來判斷快取是否生效了。
總結
當我們想從快取中查詢某條資料時,可以注入
CacheManager
,透過快取名稱來獲取對應快取,再根據key獲取value。就像
findAddressFromCache
裡那樣。
這只是個簡單例子,實際使用的時候還要多關注他的配置引數,最基本的就是快取的過期時間,這樣才能更好的使用它。
來自 “ ITPUB部落格 ” ,連結:https://blog.itpub.net/70036623/viewspace-3004587/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Caffeine快取的簡單介紹快取
- Spring Boot:簡單使用EhCache快取框架Spring Boot快取框架
- 一個簡單的spring-boot例子Springboot
- Caffeine 快取庫快取
- EVCache快取在 Spring Boot中的實戰快取Spring Boot
- Spring Boot基礎教程:EhCache快取的使用Spring Boot快取
- 5、Spring Boot快取Spring Boot快取
- 最強本地快取Caffeine快取
- 快取函式的簡單使用快取函式
- Spring Boot Cache Redis快取Spring BootRedis快取
- Spring Boot—— Thymeleaf (gradle) 的簡單使用Spring BootGradle
- 使用EHCACHE三步搞定SPRING BOOT 快取Spring Boot快取
- 基於Spring Cache實現二級快取(Caffeine+Redis)Spring快取Redis
- 如何在 Spring Boot 中為快取新增壓縮?Spring Boot快取
- Spring Boot中7種最佳化快取方法Spring Boot快取
- mysql查詢快取簡單使用MySql快取
- Nginx 快取使用指南-簡單Nginx快取
- spring boot使用Jedis整合Redis實現快取(AOP)Spring BootRedis快取
- 深入解密來自未來的快取-Caffeine解密快取
- Spring Boot 2.x基礎教程:EhCache快取的使用Spring Boot快取
- Spring boot學習(八)Spring boot配置ehcache快取框架Spring Boot快取框架
- 在Spring Boot快取API - Code FactorySpring Boot快取API
- 如何處理 Spring Boot 中與快取相關的錯誤?Spring Boot快取
- Guava Cache本地快取在 Spring Boot應用中的實踐Guava快取Spring Boot
- Spring Boot中使用TestContainer測試快取機制Spring BootAI快取
- SpringBoot 整合快取效能之王 CaffeineSpring Boot快取
- Java高效能本地快取框架CaffeineJava快取框架
- [譯] 高效能 Java 快取庫 — CaffeineJava快取
- Spring Cache + Caffeine的整合與使用Spring
- Spring Boot(十一):Spring Boot 中 MongoDB 的使用Spring BootMongoDB
- Spring Boot(三):Spring Boot 中 Redis 的使用Spring BootRedis
- Spring定時任務的簡單例子Spring單例
- Spring Boot與Kafka + kafdrop結合使用的簡單示例Spring BootKafka
- Spring Boot 之路(一):一個簡單的Spring Boot應用Spring Boot
- 另一種快取,Spring Boot 整合 Ehcache快取Spring Boot
- Spring Boot 整合 Redis 實現快取操作Spring BootRedis快取
- Spring Boot + Redis 快取方案深度解讀Spring BootRedis快取
- Spring Boot In Practice (1):Redis快取實戰Spring BootRedis快取