摘要:依賴這里使用配置配置文件配置配置文件配置使用
maven依賴
org.springframework.boot spring-boot-starter-cache com.google.guava guava 19.0
這里使用guava cache
配置(配置文件 or java配置) 配置文件spring.cache.type=guava spring.cache.cache-names=cache1,cache2 spring.cache.guava.spec=maximumSize=500,expireAfterAccess=5mjava配置
@Configuration @EnableCaching public class CacheConfig { public static final String CACHE1 = "cache1"; public static final String CACHE2 = "cache2"; @Bean public Cache cache1() { return new GuavaCache(CACHE1, CacheBuilder.newBuilder() .maximumSize(500) .expireAfterWrite(5, TimeUnit.MINUTES) .build()); } @Bean public Cache cache2() { return new GuavaCache(CACHE2, CacheBuilder.newBuilder() .maximumSize(500) .expireAfterWrite(10, TimeUnit.MINUTES) .build()); } }使用
@Cacheable(CacheConfig.CACHE1) public User getUser(String token){ //...... }docs
boot-features-caching
spring-one2gx-caching-with-spring
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/61791.html
摘要:而在這個(gè)微服務(wù)下,同樣需要進(jìn)行數(shù)據(jù)操作,我不可能還要在下再一次進(jìn)行集成,這樣大大的增加了代碼量。其次,是將有關(guān)數(shù)據(jù)操作的都單獨(dú)部署成一個(gè)模塊,比如我集成的模塊,集成的模塊,使用作為內(nèi)存緩存模塊。 前言 相對于 spring 對 mybatis 以及 redis 等的整合所需要的各種配置文件,在 springboot 下,已經(jīng)大大的簡化了,你可能只是需要增加個(gè)依賴,加個(gè)注解,然后在配置文...
摘要:本文章的源碼再文章末尾什么是查詢緩存有一級(jí)緩存和二級(jí)緩存。默認(rèn)開啟一級(jí)緩存。證明了一級(jí)緩存只是在數(shù)據(jù)庫會(huì)話內(nèi)部共享的。但是,整合到中后,一級(jí)緩存就會(huì)被關(guān)閉。根據(jù)時(shí)間表比如沒有刷新間隔緩存不會(huì)以任何時(shí)間順序來刷新。 學(xué)習(xí)SpringBoot集成Mybatis的第二章,了解到Mybatis自帶的緩存機(jī)制,在部署的時(shí)候踩過了一些坑。在此記錄和分享一下Mybatis的緩存作用。 本文章的源碼再...
閱讀 1743·2021-11-24 10:18
閱讀 2255·2021-11-18 13:20
閱讀 2346·2021-08-23 09:46
閱讀 1007·2019-08-30 15:56
閱讀 2851·2019-08-30 15:53
閱讀 748·2019-08-30 14:22
閱讀 478·2019-08-29 15:34
閱讀 2545·2019-08-29 12:14