R2M在项目中的使用

本文介绍了一个使用R2M缓存服务的项目案例,重点在于如何通过Redis进行数据缓存,并提供了缓存降级处理方案。此外,还探讨了如何利用Redis锁来避免重复提交的问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

本次主要是记录R2M在项目中的使用以及降级处理

	public static void setOrderRid(String cacheKey,R2MCacheService redisUtils,OrderConfimVO confirmVo,HttpServletResponse response,int cacheTime) {
		try {
			redisUtils.setex(cacheKey, cacheTime, JSON.toJSONString(confirmVo));
		} catch (Exception e) {
			// redis异常降级
			Cookie cookie = new Cookie(cacheKey,JSON.toJSONString(confirmVo));
			cookie.setMaxAge(cacheTime);
			cookie.setDomain(".xx.com");//域名
			cookie.setPath("/");  
			response.addCookie(cookie);
		}
	}
	

	public static String getOrderRidValue(String cacheKey,R2MCacheService redisUtils,HttpServletRequest request) {
		try {
			return redisUtils.get(cacheKey);
		} catch (Exception e) {
			// redis异常降级
			Cookie[] cookies = request.getCookies();
			if(cookies!=null&& cookies.length >0){
				for(Cookie cookie:cookies){
					if(cacheKey.equals(cookie.getName())){
						return cookie.getValue();
					}
				}
			}
			
		}
		return null;
	}
public static void delOrderRid(String cacheKey,R2MCacheService redisUtils, HttpServletResponse response) {
		try {
			 redisUtils.del(cacheKey);
		} catch (Exception e) {
//			// redis异常降级
			Cookie cookie = new Cookie(cacheKey, "");
			//立即销毁cookie
			cookie.setDomain(".xx.com");
			cookie.setPath("/");  
			cookie.setMaxAge(0);
			response.addCookie(cookie);
		}
	}
	
	
	

使用redis锁防止重复提交

	private final int REDISTIME = 60;
	public boolean tryLockFlow(String key) {
		try {
			long increValue = r2MCacheService.incr(key);
			r2MCacheService.expire(key, REDISTIME);
			if (increValue == 1) {
				return true;
			}
			r2MCacheService.decr(key);
			return false;
		} catch (Exception e) {
			LOGGER.error("redis加锁异常", e);
			// 异常情况下,保证业务流程正常
			return true;
		}
	}

	
	public void releaseLock(String key) {
		try {
			r2MCacheService.decr(key);
		} catch (Exception e) {
			LOGGER.error("redis解锁异常", e);
		}
	}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值