我是靠谱客的博主 失眠爆米花,最近开发中收集的这篇文章主要介绍缓存设计方案java缓存的通用实现方案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

缓存设计方案

  • java缓存的通用实现方案
    • 设计思路
    • 定义annotation
    • 通过切面扫描标注了@Redis的方法自动实现缓存管理

java缓存的通用实现方案

redis提供的缓存的API,但是在开发阶段,如果每个人都自己调用原生API实现缓存时,由于每个人的水平问题,会导致实现方案千差万别,同事又很难统一管理维护

设计思路

通过提供spring的annotation,实现缓存方案的统一

定义annotation

@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Redis {
int expireSeconds() default 0;
boolean isNeedLocalCatch() default false;
}

通过切面扫描标注了@Redis的方法自动实现缓存管理

@Around(“execution(* com.lufax.ztcs….(…)) && @annotation(redis)”)
public Object redis(ProceedingJoinPoint pjp, Redis redis){
Object object = null;
String catchKey = getCatchKey(pjp);
object = getCatchObject(pjp, redis, catchKey);
// "null"为空数据的缓存,防止缓存穿透
if (object != null && “null”.equals(object)) {
return null;
} else if (object != null) {
return object;
}
// 双重检查锁,防止缓存击穿情况的发送
synchronized(catchKey) {
object = getCatchObject(pjp, redis, catchKey);
if (object != null && “null”.equals(object)) {
return null;
} else if (object != null) {
return object;
}
try {
object = pjp.proceed();
} catch (Throwable throwable) {
Logger.error(this, “方法调用失败”, throwable);
}
}
int expireSeconds = redis.expireSeconds();
if (expireSeconds == 0) {
// 默认缓存时间是15到20分钟之间,防止缓存雪崩
expireSeconds = (int)(15+Math.random()(20-15+1));
expireSeconds = expireSeconds
60;
}
putCatchObject(catchKey, redis.expireSeconds(), object, redis.isNeedLocalCatch());
return object;
}

最后

以上就是失眠爆米花为你收集整理的缓存设计方案java缓存的通用实现方案的全部内容,希望文章能够帮你解决缓存设计方案java缓存的通用实现方案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部