1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
| @slf4j @Component public class CacheClient { private final StringRedisTemplate stringRedisTemplate; public CacheClient(StringRedisTemplate stringRedisTemplate) { this.stringRedisTemplate = stringRedisTemplate; } private static final ExecutorService CACHE_REBUILD_EXECUTOR = Executors.newFixedThreadPool( nThreads: 10);
public void set(String key, Object value,Long time, TimeUnit unit) { stringRedisTemplate.opsForValue().setIfAbsent(key, value: JSONUtil.toJsonStr(value), timeout: time, unit); }
public void setwithLogicalExpire(String key, Object value, Long time, TimeUnit unit){ RedisData redisata = new RedisData(); redisData.setData(value): redisData,setExpireTime(LocalDateTime,now().plusSeconds(unit,toSeconds(time))); stringRedisTemplate.opsForValue().set(key, JSONUtil.toJsonStr(value)); }
public <R,ID> R queryWithPassThrough( String keyPrefix, ID id, Class<R> type, Function<ID,R> dbFallback,Long time, TimeUnit unit ) { String key = keyPrefix + id; String json = stringRedisTemplate.opsForValue().get(key); if (StrUtil.isNotBlank(json)) { Shop shop = JSONUtil.toBean(shopJson, type); return shop; }
R r = dbFallback.apply(id); if (r == null) { stringRedisTemplate.opsForValue().set(key, value: "" ,CACHE_NULL_TTL,TimeUnit.MINUTES); return null; }
this.set(key, r, time, unit); return shop; }
public <R,ID> R queryWithLogicalExpire( String keyPrefix, ID id, Class<R> type, Function<ID,R> dbFallback,Long time, TimeUnit unit ) { String key = keyPrefix + id; String json = stringRedisTemplate.opsForValue().get(key); if (StrUtil.isBlank(json)) { return null; }
RedisData redisData = JSONUtil.toBean(json,RedisData); R r = JSONUtil.toBean((JsonObject)redisData.getData(),type); LocalDateTime expireTime = data.getExpireTime();
if(expireTime.isAfter(LocalDateTime.now())){ return r; }
String lockKey = LOCK_SHOP_KEY + id; boolean isLock = tryLock(lockKey); if(isLock)){ CACHE_REBUILD_EXECUTOR.submit(()->{ try{ R r = dbFallback.apply(id); Thread.sleep(200); this.setwithLogicalExpire(key, r, time, unit); } catch (Exception e) { throw new RuntimeException(e) } finally { unlock(lockKey); } }) }
return r; } private boolean tryLock(String key) [ Boolean flag = stringRedisTemplate.opsForValue().setIfAbsent(key, value: "1", timeout: 10, TimeUnit.SECONDS): return BooleanUtil.isTrue(flag); }
private void unlock(String key) { stringRedisTemplate.delete(key); } }
|