服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Redis - 基于Redis实现分布式锁的方法(lua脚本版)

基于Redis实现分布式锁的方法(lua脚本版)

2021-08-03 16:41总有人想害朕 Redis

这篇文章主要介绍了基于Redis实现分布式锁的方法(lua脚本版),本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

1、前言

 

在java中,我们通过锁来避免由于竞争而造成的数据不一致问题。通常我们使用synchronized 、lock来实现。但是java中的锁只能保证在同一个jvm进程内中可用,在跨jvm进程,例如分布式系统上则不可靠了。

2、分布式锁

 

分布式锁,是一种思想,它的实现方式有很多,如基于数据库实现、基于缓存(redis等)实现、基于zookeeper实现等等。为了确保分布式锁可用,我们至少要确保锁的实现同时满足以下四个条件

  • 互斥性:在任意时刻,只有一个客户端能持有锁。
  • 不会发生死锁:即使客户端在持有锁的期间崩溃而没有主动解锁,也能保证后续其他客户端能加锁。
  • 具有容错性:只要大部分的redis节点正常运行,客户端就可以加锁和解锁。
  • 解铃还须系铃人:加锁和解锁必须是同一个客户端,客户端自己不能把别人加的锁给解了。

 3、基于redis实现分布式锁

 

以下代码实现了基于redis中间件的分布式锁。加锁的过程中为了保障setnx(设置key)和expire(设置超时时间)尽可能在一个事务中,使用到了lua脚本的方式,将需要完成的指令一并提交到redis中;

3.1、redisconfig.java

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.demo.configuration;
 
import org.springframework.context.annotation.bean;
import org.springframework.context.annotation.configuration;
import org.springframework.data.redis.connection.redisconnectionfactory;
import org.springframework.data.redis.core.redistemplate;
import org.springframework.data.redis.serializer.genericjackson2jsonredisserializer;
import org.springframework.data.redis.serializer.stringredisserializer;
 
@configuration
public class redisconfig {
 
    @bean
    public redistemplate<string, object> redistemplate(redisconnectionfactory factory) {
        redistemplate<string, object> template = new redistemplate<>();
        template.setconnectionfactory(factory);
        // key采用string的序列化方式
        template.setkeyserializer(new stringredisserializer());
        // value序列化方式采用jackson
        template.setvalueserializer(new genericjackson2jsonredisserializer());
        template.afterpropertiesset();
        return template;
    }
 
}

3.2、redislockcontroller.java

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.demo.controller;
 
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.core.io.classpathresource;
import org.springframework.data.redis.core.redistemplate;
import org.springframework.data.redis.core.script.defaultredisscript;
import org.springframework.scripting.support.resourcescriptsource;
import org.springframework.web.bind.annotation.pathvariable;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.restcontroller;
 
import java.util.arrays;
 
@restcontroller
@requestmapping("/redis")
public class redislockcontroller {
 
    @autowired
    private redistemplate<string, object> redistemplate;
 
    @requestmapping(value = "/lock/{key}/{uid}/{expire}")
    public long lock(@pathvariable("key") string key, @pathvariable("uid") string uid, @pathvariable("expire") integer expire) {
        long result = null;
        try {
            //调用lua脚本并执行
            defaultredisscript<long> redisscript = new defaultredisscript<>();
            redisscript.setresulttype(long.class);//返回类型是long
            //lua文件存放在resources目录下的redis文件夹内
            redisscript.setscriptsource(new resourcescriptsource(new classpathresource("redis/redis_lock.lua")));
            result = redistemplate.execute(redisscript, arrays.aslist(key), uid, expire);
            system.out.println("lock==" + result);
        } catch (exception e) {
            e.printstacktrace();
        }
        return result;
    }
 
    @requestmapping(value = "/unlock/{key}/{uid}")
    public long unlock(@pathvariable("key") string key, @pathvariable("uid") string uid) {
        long result = null;
        try {
            //调用lua脚本并执行
            defaultredisscript<long> redisscript = new defaultredisscript<>();
            redisscript.setresulttype(long.class);//返回类型是long
            //lua文件存放在resources目录下的redis文件夹内
            redisscript.setscriptsource(new resourcescriptsource(new classpathresource("redis/redis_unlock.lua")));
            result = redistemplate.execute(redisscript, arrays.aslist(key), uid);
            system.out.println("unlock==" + result);
        } catch (exception e) {
            e.printstacktrace();
        }
        return result;
    }
 
}

3.3、redis_lock.lua

?
1
2
3
4
5
if redis.call('setnx',keys[1],argv[1]) == 1 then
    return redis.call('expire',keys[1],argv[2])
else
    return 0
end

3.4、redis_unlock.lua

?
1
2
3
4
5
6
7
8
9
if redis.call("exists",keys[1]) == 0 then
    return 1
end
 
if redis.call('get',keys[1]) == argv[1] then
    return redis.call('del',keys[1])
else
    return 0
end

4、测试效果

 

key123为key,thread12345为value标识锁的主人,300为该锁的超时时间

加锁:锁主人为thread12345
http://127.0.0.1:8080/redis/lock/key123/thread12345/300

解锁:解锁人为thread123456
http://127.0.0.1:8080/redis/unlock/key123/thread123456

解锁:解锁人为thread12345
http://127.0.0.1:8080/redis/unlock/key123/thread12345

4.1、加锁,其他人解锁

基于Redis实现分布式锁的方法(lua脚本版)
基于Redis实现分布式锁的方法(lua脚本版)

thread12345加的锁,thread123456是解不了的,只有等thread12345自己解锁或者锁的超时时间过期

4.2、加锁,自己解锁

基于Redis实现分布式锁的方法(lua脚本版)
基于Redis实现分布式锁的方法(lua脚本版)

基于Redis实现分布式锁的方法(lua脚本版)

thread12345加的锁,thread12345自己随时可以解锁,也可以等锁的超时时间过期

5、总结

 

  •  使用redis锁,会有业务未执行完,锁过期的问题,也就是锁不具有可重入性的特点。
  • 使用redis锁,在尝试获取锁的时候,是非阻塞的,不满足在一定期限内不断尝试获取锁的场景。
  • 以上两点,都可以采用redisson锁解决。

到此这篇关于基于redis实现分布式锁的方法(lua脚本版)的文章就介绍到这了,更多相关redis实现分布式锁内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/WU4566285/article/details/116622270

延伸 · 阅读

精彩推荐
  • Redis《面试八股文》之 Redis十六卷

    《面试八股文》之 Redis十六卷

    redis 作为我们最常用的内存数据库,很多地方你都能够发现它的身影,比如说登录信息的存储,分布式锁的使用,其经常被我们当做缓存去使用。...

    moon聊技术8182021-07-26
  • Redis详解三分钟快速搭建分布式高可用的Redis集群

    详解三分钟快速搭建分布式高可用的Redis集群

    这篇文章主要介绍了详解三分钟快速搭建分布式高可用的Redis集群,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,...

    万猫学社4502021-07-25
  • Redis如何使用Redis锁处理并发问题详解

    如何使用Redis锁处理并发问题详解

    这篇文章主要给大家介绍了关于如何使用Redis锁处理并发问题的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用Redis具有一定的参考学习...

    haofly4522019-11-26
  • RedisRedis Template实现分布式锁的实例代码

    Redis Template实现分布式锁的实例代码

    这篇文章主要介绍了Redis Template实现分布式锁,需要的朋友可以参考下 ...

    晴天小哥哥2592019-11-18
  • RedisRedis集群的5种使用方式,各自优缺点分析

    Redis集群的5种使用方式,各自优缺点分析

    Redis 多副本,采用主从(replication)部署结构,相较于单副本而言最大的特点就是主从实例间数据实时同步,并且提供数据持久化和备份策略。...

    优知学院4082021-08-10
  • Redis关于Redis数据库入门详细介绍

    关于Redis数据库入门详细介绍

    大家好,本篇文章主要讲的是关于Redis数据库入门详细介绍,感兴趣的同学赶快来看一看吧,对你有帮助的话记得收藏一下,方便下次浏览...

    沃尔码6982022-01-24
  • Redisredis缓存存储Session原理机制

    redis缓存存储Session原理机制

    这篇文章主要为大家介绍了redis缓存存储Session原理机制详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪...

    程序媛张小妍9252021-11-25
  • RedisRedis 6.X Cluster 集群搭建

    Redis 6.X Cluster 集群搭建

    码哥带大家完成在 CentOS 7 中安装 Redis 6.x 教程。在学习 Redis Cluster 集群之前,我们需要先搭建一套集群环境。机器有限,实现目标是一台机器上搭建 6 个节...

    码哥字节15752021-04-07