当前位置: 首页 > 编程笔记 >

springboot集成redis实现简单秒杀系统

颜高朗
2023-03-14
本文向大家介绍springboot集成redis实现简单秒杀系统,包括了springboot集成redis实现简单秒杀系统的使用技巧和注意事项,需要的朋友参考一下

本文实例为大家分享了springboot集成redis实现简单秒杀系统的具体代码,供大家参考,具体内容如下

项目是有地址的,我会放到文章的最后面

1. 直接service,我们会介绍两种秒杀模式

public interface GoodsService {

 /**
  * 通过lua脚本实现的秒杀
  * @param skuCode 商品编码
  * @param buyNum 购买数量
  * @return 购买数量
  */
 Long flashSellByLuaScript(String skuCode,int buyNum);
 /**
  * 通过redis 事务 实现的秒杀
  * @param skuCode 商品编码
  * @param buyNum 购买数量
  * @return 购买数量
  */
 Long flashSellByRedisWatch(String skuCode,int buyNum);

}

2. service实现类

import org.springframework.dao.DataAccessException;
import org.springframework.data.redis.core.RedisOperations;
import org.springframework.data.redis.core.SessionCallback;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.data.redis.core.ValueOperations;
import org.springframework.data.redis.core.script.DefaultRedisScript;
import org.springframework.data.redis.serializer.RedisSerializer;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;
import java.util.Collections;
import java.util.List;

@Service
public class GoodsServiceImpl implements GoodsService {

 @Resource
 private StringRedisTemplate stringRedisTemplate;

 @Override
 public Long flashSellByLuaScript(String skuCode,int num) {
  //下面是lua脚本
  String luaScript ="local buyNum = ARGV[1]\n" +
    "local goodsKey = KEYS[1] \n" +
    "local goodsNum = redis.call('get',goodsKey) \n" +
    "if goodsNum >= buyNum \n" +
    "then redis.call('decrby',goodsKey,buyNum) \n" +
    "return buyNum \n" +
    "else \n" +
    "return '0'\n" +
    "end\n" +
    "\n" ;

  DefaultRedisScript<String> re = new DefaultRedisScript<String>();
  //设置脚本
  re.setScriptText(luaScript);
  //定义返回值类型,注意,如果没有这个定义,Spring不会返回结果
  re.setResultType(String.class);
  RedisSerializer<String> stringRedisSerializer = stringRedisTemplate.getStringSerializer();
  //执行LUA脚本
  String result = (String) stringRedisTemplate.execute(re, stringRedisSerializer, stringRedisSerializer, null);
  return Long.valueOf(result);
 }

 @Override
 public Long flashSellByRedisWatch(String skuCode,int num){

  SessionCallback<Long> sessionCallback = new SessionCallback<Long>() {
   @Override
   public Long execute(RedisOperations operations) throws DataAccessException {
    int result = num;
    //redis 乐观锁
    //我们观察商品编码是否发生改变
    operations.watch(skuCode);
    ValueOperations<String, String> valueOperations = operations.opsForValue();
    String goodsNumStr = valueOperations.get(skuCode);
    Integer goodsNum = Integer.valueOf(goodsNumStr);
    //标记一个事务块的开始。
    //事务块内的多条命令会按照先后顺序被放进一个队列当中,
    //最后由 EXEC 命令原子性(atomic)地执行。
    operations.multi();
    if (goodsNum >= num) {
     valueOperations.increment(skuCode, 0 - num);
    } else {
     result = 0;
    }
    //多条命令执行的结果集合
    List exec = operations.exec();
    if(exec.size()>0){
     System.out.println(exec);
    }
    return (long) result;
   }
  };
  return stringRedisTemplate.execute(sessionCallback);
 }
//省略 其他的方法


}

3. controller

但是首先要向你的redis里面仍一个数据,key='xiaomi',value='100'

@ApiOperation(value = "用事务秒杀测试接口", notes = "用事务秒杀测试接口")
@RequestMapping(value = "/miaoTransaction", method = RequestMethod.GET)
@ResponseBody
 public Long miaoTransaction() {

  Long res = goodsService.flashSellByRedisWatch("xiaomi", 1);
  return res;
 }


 @ApiOperation(value = " 秒杀Lua测试接口", notes = "秒杀Lua测试接口")
 @RequestMapping(value = "/miaoLua", method = RequestMethod.GET)
 @ResponseBody
 public Long miaoLua() {

  Long res = goodsService.flashSellByRedisWatch("xiaomi", 1);
  System.out.println(res.toString());
  return res;
 }

然后就可以用jemeter并发访问了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 本文向大家介绍如何通过SpringBoot实现商城秒杀系统,包括了如何通过SpringBoot实现商城秒杀系统的使用技巧和注意事项,需要的朋友参考一下 这篇文章主要介绍了如何通过SpringBoot实现商城秒杀系统,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 学习自:地址 1.主要流程 1.1数据库:    1.2 环境 window下:Zoo

  • 本文向大家介绍php+redis实现商城秒杀功能,包括了php+redis实现商城秒杀功能的使用技巧和注意事项,需要的朋友参考一下 好久没来整理文章了,闲了没事写篇文章记录下php+redis实现商城秒杀功能。 1、安装redis,根据自己的php版本安装对应的redis扩展(此步骤简单的描述一下) 1.1.安装php_igbinary.dll,php_redis.dll扩展此处需要注意你的php

  • 本文向大家介绍Thinkphp5+Redis实现商品秒杀代码实例讲解,包括了Thinkphp5+Redis实现商品秒杀代码实例讲解的使用技巧和注意事项,需要的朋友参考一下 环境:wamp,redis 要求:安装WAMP,Redis,以及为PHP安装Redis扩展 秒杀功能大致思路:获取缓存列表的长度,如果长度(llen)等于0,就停止秒杀,即秒杀失败,如果长度大于0,则继续运行,先从缓存中移除一个

  • 本文向大家介绍springboot与redis的简单整合实例,包括了springboot与redis的简单整合实例的使用技巧和注意事项,需要的朋友参考一下 前言 Redis是一个缓存、消息代理和功能丰富的键值存储。StringBoot提供了基本的自动配置。本文记录一下springboot与redis的简单整合实例 官方文档:https://docs.spring.io/spring-boot/do

  • 本文向大家介绍iOS中实现简单易懂秒杀倒计时/倒计时代码,包括了iOS中实现简单易懂秒杀倒计时/倒计时代码的使用技巧和注意事项,需要的朋友参考一下 示例代码简单易懂: 以上所述是小编给大家介绍的iOS中实现简单易懂秒杀倒计时/倒计时代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对呐喊教程网站的支持!