首頁 > 軟體

SpringBoot中使用Redis作為全域性鎖範例過程

2022-03-23 19:00:11

微服務的專案中,一個服務我們啟動多份,在不同的程序中。這些服務是無狀態的,而由資料儲存容器(mysql/redis/es)進行狀態資料的持久化。這就會導致資源競爭,出現多執行緒的問題。

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

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全域性鎖的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com