1. 程式人生 > >AutoLoadCache 7.0.1 大版本釋出,增加 Magic 模式

AutoLoadCache 7.0.1 大版本釋出,增加 Magic 模式

  

6.9.6版本增加kryo序列化支援;

7.0.0 改用Redis Pipeline優化;

7.0.1 增加magic模式、優化分散式鎖、KryoSerializer可增加自定義類註冊器;

autoload-cache-spring-boot-starter 為了支援Spring boot 1.x和2.x,也使用兩版本進行分別管理:6.x 繼續支援Spring boot1.x; 從7.x開始支援Spring boot2.x;

下面重點介紹新增的magic模式:

使用Magic模式,會將引數進行分隔,先批量去快取中查詢,獲取命中的快取,然後將快取未命中的,再批量從資料來源載入,然後把從資料來源載入的資料刷入快取,最後把快取命中的與資料來源載入的資料一併返回。

Magic模式的使用說明:https://gitee.com/qiujiayu/AutoLoadCache/blob/master/doc/magic.md

測試程式碼:https://gitee.com/qiujiayu/autoload-cache-spring-boot-starter/blob/master/src/test/java/com/jarvis/cache/demo/test/UserServiceTest.java