91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

同德县| 宣化县| 嵊泗县| 德清县| 古浪县| 长海县| 湄潭县| 平乡县| 蒲江县| 平阴县| 车险| 扎赉特旗| 缙云县| 寿光市| 昌都县| 鹿邑县| 巩留县| 迁西县| 平舆县| 宜丰县| 东平县| 珠海市| 茶陵县| 林州市| 徐汇区| 介休市| 边坝县| 盐城市| 岱山县| 乌恰县| 龙海市| 神木县| 成武县| 左贡县| 梨树县| 潼南县| 平遥县| 南城县| 古蔺县| 浪卡子县| 朔州市|