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

溫馨提示×

溫馨提示×

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

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

SpringBoot中如何使用Redis作為全局鎖

發布時間:2022-03-24 09:16:24 來源:億速云 閱讀:130 作者:iii 欄目:開發技術

這篇文章主要講解了“SpringBoot中如何使用Redis作為全局鎖”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“SpringBoot中如何使用Redis作為全局鎖”吧!

一、模擬沒有鎖情況下的資源競爭

public class CommonConsumerService {
    //庫存個數
    static int goodsCount = 900;
    //賣出個數
    static int saleCount = 0;
    public static void main(String[] args) throws InterruptedException {
        for (int i = 0; i < 1000; i++) {
            new Thread(() -> {
                try {Thread.sleep(2);} catch (InterruptedException e) {}
                if (goodsCount > 0) {
                    goodsCount--;
                    System.out.println("剩余庫存:" + goodsCount + " 賣出個數" + ++saleCount);
                }
            }).start();
        }
        Thread.sleep(3000);
    }
}

運行一次,最后幾行的輸出結果如下,很明顯出錯了,剩余0個商品卻只賣出了899個商品,很明顯有商品被某個線程私吞了。

...
剩余庫存:5 賣出個數893
剩余庫存:5 賣出個數894
剩余庫存:4 賣出個數895
剩余庫存:2 賣出個數896
剩余庫存:2 賣出個數897
剩余庫存:1 賣出個數898
剩余庫存:0 賣出個數899

二、使用redis加鎖

redis是單線程的,串行執行,那么接下來使用redis為資源進行加鎖。

1.首先引入依賴

compile "org.springframework.boot:spring-boot-starter-data-redis"

2.引入redis加鎖工具類

package com.kingboy.common.utils;
import redis.clients.jedis.Jedis;
import java.util.Collections;
/**
 * @author kingboy--KingBoyWorld@163.com
 * @date 2017/12/29 下午1:57
 * @desc Redis工具.
 */
public class RedisTool {
    private static final String LOCK_SUCCESS = "OK";
    private static final String SET_IF_NOT_EXIST = "NX";
    private static final String SET_WITH_EXPIRE_TIME = "PX";
    private static final Long RELEASE_SUCCESS = 1L;
    /**
     * 嘗試獲取分布式鎖
     * @param jedis      Redis客戶端
     * @param lockKey    鎖
     * @param requestId  請求標識
     * @param expireTime 超期時間
     * @return 是否獲取成功
     */
    public static boolean tryGetDistributedLock(Jedis jedis, String lockKey, String requestId, int expireTime) {
        String result = jedis.set(lockKey, requestId, SET_IF_NOT_EXIST, SET_WITH_EXPIRE_TIME, expireTime);
        if (LOCK_SUCCESS.equals(result)) {
            return true;
        }
        return false;
    }
    /**
     * 釋放分布式鎖
     * @param jedis     Redis客戶端
     * @param lockKey   鎖
     * @param requestId 請求標識
     * @return 是否釋放成功
     */
    public static boolean releaseDistributedLock(Jedis jedis, String lockKey, String requestId) {
        String script = "if redis.call('get', KEYS[1]) == ARGV[1] then return redis.call('del', KEYS[1]) else return 0 end";
        Object result = jedis.eval(script, Collections.singletonList(lockKey), Collections.singletonList(requestId));
        if (RELEASE_SUCCESS.equals(result)) {
            return true;
        }
        return false;
    }
}

3.將上面沒有鎖的示例代碼改編如下:

public class RedisLockConsumerService {
    //庫存個數
    static int goodsCount = 900;
    //賣出個數
    static int saleCount = 0;
    @SneakyThrows
    public static void main(String[] args) {
        JedisPool jedisPool = new JedisPool(new JedisPoolConfig(), "192.168.0.130", 6379, 1000);
        for (int i = 0; i < 1000; i++) {
            new Thread(() -> {
                try {Thread.sleep(2);} catch (InterruptedException e) {}
                Jedis jedis = jedisPool.getResource();
                boolean lock = false;
                while (!lock) {
                    lock = RedisTool.tryGetDistributedLock(jedis, "goodsCount", Thread.currentThread().getName(), 10);
                }
                if (lock) {
                    if (goodsCount > 0) {
                        goodsCount--;
                        System.out.println("剩余庫存:" + goodsCount + " 賣出個數" + ++saleCount);
                    }
                }
                RedisTool.releaseDistributedLock(jedis, "goodsCount", Thread.currentThread().getName());
                jedis.close();
            }).start();
        }
        Thread.sleep(3000);
        jedisPool.close();
    }
}

執行幾次程序輸出結果如下,可以看到結果是有序,并且正確的。

...
剩余庫存:6 賣出個數894
剩余庫存:5 賣出個數895
剩余庫存:4 賣出個數896
剩余庫存:3 賣出個數897
剩余庫存:2 賣出個數898
剩余庫存:1 賣出個數899
剩余庫存:0 賣出個數900

感謝各位的閱讀,以上就是“SpringBoot中如何使用Redis作為全局鎖”的內容了,經過本文的學習后,相信大家對SpringBoot中如何使用Redis作為全局鎖這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

通化县| 无为县| 灵璧县| 噶尔县| 油尖旺区| 沂源县| 鄂州市| 那坡县| 泗水县| 赣榆县| 抚顺县| 贵州省| 淮南市| 澳门| 滦平县| 黄龙县| 徐州市| 子长县| 花莲市| 泗阳县| 阳新县| 隆安县| 遵义市| 尚义县| 安国市| 崇明县| 巨鹿县| 温宿县| 凤庆县| 息烽县| 商城县| 吉安县| 赤壁市| 平乡县| 丰顺县| 青岛市| 定兴县| 凌云县| 宁蒗| 岐山县| 莱西市|