Spring Boot 2.x基礎教程:使用集中式快取Redis

程式猿DD發表於2020-08-13

之前我們介紹了兩種程式內快取的用法,包括Spring Boot預設使用的ConcurrentMap快取以及快取框架EhCache。雖然EhCache已經能夠適用很多應用場景,但是由於EhCache是程式內的快取框架,在叢集模式下時,各應用伺服器之間的快取都是獨立的,因此在不同伺服器的程式間會存在快取不一致的情況。即使EhCache提供了叢集環境下的快取同步策略,但是同步依然是需要一定的時間,短暫的快取不一致依然存在。

在一些要求高一致性(任何資料變化都能及時的被查詢到)的系統和應用中,就不能再使用EhCache來解決了,這個時候使用集中式快取就可以很好的解決快取資料的一致性問題。接下來我們就來學習一下,如何在Spring Boot的快取支援中使用Redis實現資料快取。

動手試試

本篇的實現將基於上一篇的基礎工程來進行。先來回顧下上一篇中的程式要素:

User實體的定義

@Entity
@Data
@NoArgsConstructor
public class User implements Serializable {

    @Id
    @GeneratedValue
    private Long id;

    private String name;
    private Integer age;

    public User(String name, Integer age) {
        this.name = name;
        this.age = age;
    }
}

User實體的資料訪問實現(涵蓋了快取註解)

@CacheConfig(cacheNames = "users")
public interface UserRepository extends JpaRepository<User, Long> {

    @Cacheable
    User findByName(String name);

}

下面開始改造這個專案:

第一步pom.xml中增加相關依賴:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-pool2</artifactId>
</dependency>

在Spring Boot 1.x的早期版本中,該依賴的名稱為spring-boot-starter-redis,所以在Spring Boot 1.x基礎教程中與這裡不同。

第二步:配置檔案中增加配置資訊,以本地執行為例,比如:

spring.redis.host=localhost
spring.redis.port=6379
spring.redis.lettuce.pool.max-idle=8
spring.redis.lettuce.pool.max-active=8
spring.redis.lettuce.pool.max-wait=-1ms
spring.redis.lettuce.pool.min-idle=0
spring.redis.lettuce.shutdown-timeout=100ms

關於連線池的配置,注意幾點:

  1. Redis的連線池配置在1.x版本中字首為spring.redis.pool與Spring Boot 2.x有所不同。
  2. 在1.x版本中採用jedis作為連線池,而在2.x版本中採用了lettuce作為連線池
  3. 以上配置均為預設值,實際上生產需進一步根據部署情況與業務要求做適當修改.

再來試試單元測試:

@Slf4j
@RunWith(SpringRunner.class)
@SpringBootTest
public class Chapter54ApplicationTests {

    @Autowired
    private UserRepository userRepository;

    @Autowired
    private CacheManager cacheManager;

    @Test
    public void test() throws Exception {
        System.out.println("CacheManager type : " + cacheManager.getClass());

        // 建立1條記錄
        userRepository.save(new User("AAA", 10));

        User u1 = userRepository.findByName("AAA");
        System.out.println("第一次查詢:" + u1.getAge());

        User u2 = userRepository.findByName("AAA");
        System.out.println("第二次查詢:" + u2.getAge());
    }

}

執行測試輸出可以得到:

CacheManager type : class org.springframework.data.redis.cache.RedisCacheManager
Hibernate: select next_val as id_val from hibernate_sequence for update
Hibernate: update hibernate_sequence set next_val= ? where next_val=?
Hibernate: insert into user (age, name, id) values (?, ?, ?)
2020-08-12 16:25:26.954  INFO 68282 --- [           main] io.lettuce.core.EpollProvider            : Starting without optional epoll library
2020-08-12 16:25:26.955  INFO 68282 --- [           main] io.lettuce.core.KqueueProvider           : Starting without optional kqueue library
Hibernate: select user0_.id as id1_0_, user0_.age as age2_0_, user0_.name as name3_0_ from user user0_ where user0_.name=?
第一次查詢:10
第二次查詢:10

可以看到:

  1. 第一行輸出的CacheManager type為org.springframework.data.redis.cache.RedisCacheManager,而不是上一篇中的EhCacheCacheManager
  2. 第二次查詢的時候,沒有輸出SQL語句,所以是走的快取獲取

整合成功!

思考題

既然EhCache等程式內快取有一致性問題存在,而Redis效能好而且還能解決一致性問題,那麼我們只要學會用Redis就好了咯,為什麼還要學程式內快取呢?先留下你的思考,下一篇我們一起討論這個問題!歡迎關注本系列教程:《Spring Boot 2.x基礎教程》

程式碼示例

本文的相關例子可以檢視下面倉庫中的chapter5-4目錄:

如果您覺得本文不錯,歡迎Star支援,您的關注是我堅持的動力!

本文首發:Spring Boot 2.x基礎教程:使用集中式快取Redis,轉載請註明出處。
歡迎關注我的公眾號:程式猿DD,獲得獨家整理的學習資源和日常乾貨推送。點選直達本系列教程目錄

相關文章