亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot中怎么利用redis實現一個秒殺系統

發布時間:2021-07-08 17:10:58 來源:億速云 閱讀:113 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關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;@Servicepublic 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; }

關于springboot中怎么利用redis實現一個秒殺系統就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

册亨县| 肃南| 延庆县| 开远市| 通州区| 沿河| 于田县| 山丹县| 宁乡县| 进贤县| 普兰店市| 梁平县| 南陵县| 兴宁市| 梅河口市| 长沙县| 从江县| 报价| 苏州市| 库尔勒市| 东港市| 临安市| 莆田市| 赤壁市| 建阳市| 盐城市| 皋兰县| 武乡县| 荥经县| 察雅县| 全州县| 东台市| 临西县| 梁河县| 莱州市| 富阳市| 奉节县| 富川| 襄城县| 沙湾县| 昌黎县|