主頁 > 知識(shí)庫 > redis鎖機(jī)制介紹與實(shí)例

redis鎖機(jī)制介紹與實(shí)例

熱門標(biāo)簽:廊坊外呼系統(tǒng)在哪買 一個(gè)地圖標(biāo)注多少錢 南京手機(jī)外呼系統(tǒng)廠家 b2b外呼系統(tǒng) 臺(tái)灣電銷 400電話辦理的口碑 四川穩(wěn)定外呼系統(tǒng)軟件 高碑店市地圖標(biāo)注app 地圖標(biāo)注工廠入駐

1 悲觀鎖

執(zhí)行操作前假設(shè)當(dāng)前的操作肯定(或有很大幾率)會(huì)被打斷(悲觀)?;谶@個(gè)假設(shè),我們在做操作前就會(huì)把相關(guān)資源鎖定,不允許自己執(zhí)行期間有其他操作干擾。

Redis不支持悲觀鎖。Redis作為緩存服務(wù)器使用時(shí),以讀操作為主,很少寫操作,相應(yīng)的操作被打斷的幾率較少。不采用悲觀鎖是為了防止降低性能。

2 樂觀鎖

執(zhí)行操作前假設(shè)當(dāng)前操作不會(huì)被打斷(樂觀)?;谶@個(gè)假設(shè),我們在做操作前不會(huì)鎖定資源,萬一發(fā)生了其他操作的干擾,那么本次操作將被放棄。

3. Redis中的鎖策略

Redis采用了樂觀鎖策略(通過watch操作)。樂觀鎖支持讀操作,適用于多讀少寫的情況!
在事務(wù)中,可以通過watch命令來加鎖;使用 UNWATCH可以取消加鎖;
如果在事務(wù)之前,執(zhí)行了WATCH(加鎖),那么執(zhí)行EXEC 命令或 DISCARD 命令后,鎖對自動(dòng)釋放,即不需要再執(zhí)行 UNWATCH 了

例子

redis鎖工具類

package com.fly.lock;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;
public class RedisLock {
  //初始化redis池
  private static JedisPoolConfig config;
  private static JedisPool pool;
  static {
    config = new JedisPoolConfig();
    config.setMaxTotal(30);
    config.setMaxIdle(10);
    pool = new JedisPool(config, "192.168.233.200", 6379);
  }
  /**
   * 給target上鎖
   * @param target
   **/
  public static void lock(Object target) {
    //獲取jedis
    Jedis jedis = pool.getResource();
    //result接收setnx的返回值,初始值為0
    Long result= 0L;
    while (result  1) {
      //如果target在redis中已經(jīng)存在,則返回0;否則,在redis中設(shè)置target鍵值對,并返回1
      result = jedis.setnx(target.getClass().getName() + target.hashCode(), Thread.currentThread().getName());
    }
    jedis.close();
  }
  /**
   * 給target解鎖
   * @param target
   **/
  public static void unLock(Object target) {
    Jedis jedis = pool.getResource();
    //刪除redis中target對象的鍵值對
    Long del = jedis.del(target.getClass().getName() + target.hashCode());
    jedis.close();
  }
  /**
   * 嘗試給target上鎖,如果鎖成功返回true,如果鎖失敗返回false
   * @param target
   * @return
   **/
  public static boolean tryLock(Object target) {
    Jedis jedis = pool.getResource();
    Long row = jedis.setnx(target.getClass().getName() + target.hashCode(), "true");
    jedis.close();
    if (row > 0) {
      return true;
    }
    return false;
  }
}

測試類

package com.fly.test;
import com.fly.lock.RedisLock;
class Task {
  public void doTask() {
    //上鎖
    RedisLock.lock(this);
    System.out.println("當(dāng)前線程: " + Thread.currentThread().getName());
    System.out.println("開始執(zhí)行: " + this.hashCode());
    try {
      System.out.println("doing...");
      Thread.sleep(2000);
    } catch (InterruptedException e) {
      e.printStackTrace();
    }
    System.out.println("完成: " + this.hashCode());
    //解鎖
    RedisLock.unLock(this);
  }
}
public class Demo {
  public static void main(String[] args) {
    Task task = new Task();
    Thread[] threads = new Thread[5];
    for (Thread thread : threads) {
      thread = new Thread(()->{
        task.doTask();
      });
      thread.start();
    }
  }
}

輸出結(jié)果:

----------------------------------------------
當(dāng)前線程: Thread-0
開始執(zhí)行: 2081499965
doing...
完成: 2081499965
----------------------------------------------
當(dāng)前線程: Thread-2
開始執(zhí)行: 2081499965
doing...
完成: 2081499965
----------------------------------------------
當(dāng)前線程: Thread-1
開始執(zhí)行: 2081499965
doing...
完成: 2081499965
----------------------------------------------
當(dāng)前線程: Thread-4
開始執(zhí)行: 2081499965
doing...
完成: 2081499965
----------------------------------------------
當(dāng)前線程: Thread-3
開始執(zhí)行: 2081499965
doing...
完成: 2081499965

去掉redis鎖后,執(zhí)行結(jié)果:

----------------------------------------------
----------------------------------------------
當(dāng)前線程: Thread-2
開始執(zhí)行: 1926683415
----------------------------------------------
當(dāng)前線程: Thread-1
doing...
當(dāng)前線程: Thread-0
----------------------------------------------
當(dāng)前線程: Thread-3
開始執(zhí)行: 1926683415
doing...
開始執(zhí)行: 1926683415
doing...
----------------------------------------------
開始執(zhí)行: 1926683415
doing...
當(dāng)前線程: Thread-4
開始執(zhí)行: 1926683415
doing...
完成: 1926683415
完成: 1926683415
完成: 1926683415
完成: 1926683415
完成: 1926683415

Process finished with exit code 0

利用redis這個(gè)性質(zhì),可以實(shí)現(xiàn)分布式鎖,當(dāng)然設(shè)計(jì)一定復(fù)雜一些!

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接

您可能感興趣的文章:
  • CentoS6.5環(huán)境下redis4.0.1(stable)安裝和主從復(fù)制配置方法
  • Redis教程(九):主從復(fù)制配置實(shí)例
  • Redis主從復(fù)制問題和擴(kuò)容問題的解決思路
  • gem install redis報(bào)錯(cuò)的解決方案
  • 使用Ruby腳本部署Redis Cluster集群步驟講解
  • Redis Cluster的圖文講解
  • Redis cluster集群的介紹
  • redis持久化的介紹
  • SpringBoot AOP控制Redis自動(dòng)緩存和更新的示例
  • Redis主從復(fù)制詳解

標(biāo)簽:畢節(jié) 泰州 伊春 河源 定州 拉薩 南寧 甘南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《redis鎖機(jī)制介紹與實(shí)例》,本文關(guān)鍵詞  redis,鎖,機(jī)制,介紹,與,實(shí)例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《redis鎖機(jī)制介紹與實(shí)例》相關(guān)的同類信息!
  • 本頁收集關(guān)于redis鎖機(jī)制介紹與實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章