search
HomeDatabaseRedisWhat are the ways to lock redis?

The common locking commands of redis are INCR, SETNX, SET

1, INCR

The locking idea of ​​​​this kind of lock is:

key does not exist, then the value of key will be initialized to 0 first, and then the INCR operation will be performed to increase it by one.

Then when other users perform the INCR operation to add one, if the returned value is greater than 1, it means that the key is being locked for use.

1. Client A requests the server to obtain the key value of 1, indicating that the lock has been obtained.

2. Client B also requests the server to obtain the key value of 2, indicating that the lock acquisition failed.

3. Client A completes the execution of the code and deletes the lock

4. Client B waits for a period of time and obtains the key value of 1 when making a request, indicating that the lock is successfully acquired

5. Client B executes the code and deletes the lock

$redis->incr($key);
$redis->expire($key, $ttl); //设置生成时间为1秒

Specific command:

127.0.0.1:6379>INCR keyName

2. SETNX

The idea behind this kind of locking is that if the key If it does not exist, set the key to value. If the key exists, SETNX does not take any action.

SETNX is the abbreviation of SET if Not eXists.

1. Client A requests the server to set the key value. If the setting is successful, it means the lock is successful.

2. Client B also requests the server to set the key value. If If the return fails, it means the locking failed

3. Client A completes the code execution and deletes the lock

4. Client B requests to set the key value after waiting for a period of time. The setting is successful

5. Client B executes the code and deletes the lock

$redis->setNX($key, $value);
$redis->expire($key, $ttl);

The specific command is:

redis> SETNX keyName value
(integer) 1

The setting is successful and 1 is returned; the setting fails and the lock is returned 0

3. SET

The above two methods have a problem. You will find that they need to set the key expiration.

So why do we need to set key expiration?

If the request execution exits unexpectedly for some reason, causing the lock to be created but not deleted, then the lock will always exist, so that the cache will never be updated in the future.

So we need to add an expiration time to the lock to prevent accidents.

But using Expire to set it is not an atomic operation.

So you can also ensure atomicity through transactions, but there are still some problems, so the official cited another one. Using the SET command itself has included the function of setting the expiration time starting from version 2.6.12.

1. Client A requests the server to set the key value. If the setting is successful, the lock is successful.

2. Client B also requests the server to set the key value. If the return fails, Then it means that the lock failed.

3. Client A completes the execution of the code and deletes the lock.

4. Client B waits for a period of time before requesting to set the key value, and the setting is successful

5. Client B executes the code and deletes the lock

$redis->set($key, $value, array('nx', 'ex' => $ttl));  //ex表示秒

Specific usage:

redis>set key value NX EX max-lock-time 实现加锁

Command explanation:

  • key: The key is the key value of redis as the identifier of the lock, and the value is here as the identifier of the client. Only when the key-value match can the right to delete the lock [Ensure security]

  • max-lock-time: Set the expiration time through max-lock-time to ensure that no deadlock will occur [Avoid deadlock]

  • NX: The operation will only be performed when the key does not exist, if not exists;

  • EX: Set the expiration time of the key to Seconds, the specific time is determined by the fifth parameter

## Lock code:

 Jedis jedis = new Jedis("127.0.0.1", 6379);
 private static final String SUCCESS = "OK";
 /**
  * 加锁操作
  * @param key 锁标识
  * @param value 客户端标识
  * @param timeOut 过期时间
  */
  
 public Boolean lock(String key,String value,Long timeOut){
     String var1 = jedis.set(key,value,"NX","EX",timeOut);
     if(LOCK_SUCCESS.equals(var1)){
         return true;
     }
     return false;
 }

Unlock code:

 Jedis jedis = new Jedis("127.0.0.1", 6379); 
 private static final Long UNLOCK_SUCCESS = 1L;
 /**
  * 解锁操作
  * @param key 锁标识
  * @param value 客户端标识
  * @return
  */
  
 public static Boolean unLock(String key,String value){
     String luaScript = "if redis.call(\"get\",KEYS[1]) == ARGV[1] then return 
     redis.call(\"del\",KEYS[1]) else  return 0 end";
     Object var2 = jedis.eval(luaScript,Collections.singletonList(key), Collections.singletonList(value));
     if (UNLOCK_SUCCESS == var2) {
         return true;
     }
     return false;
}

luaScript This string is a lua script, which means that if the value obtained according to the key is the same as the value passed in, execute del, otherwise it will return 0 [guarantee security]

jedis .eval(String,list,list); This command is to execute the lua script. The set of KEYS is the second parameter, and the set of ARGV is the third parameter [atomic operation to ensure unlocking]

The above is achieved How to use redis to correctly implement distributed locks, but there is a small flaw that the lock expiration time should be set to an appropriate value. This actually needs to be considered based on the business scenario.

The above is the detailed content of What are the ways to lock redis?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
es和redis区别es和redis区别Jul 06, 2019 pm 01:45 PM

Redis是现在最热门的key-value数据库,Redis的最大特点是key-value存储所带来的简单和高性能;相较于MongoDB和Redis,晚一年发布的ES可能知名度要低一些,ES的特点是搜索,ES是围绕搜索设计的。

一起来聊聊Redis有什么优势和特点一起来聊聊Redis有什么优势和特点May 16, 2022 pm 06:04 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于redis的一些优势和特点,Redis 是一个开源的使用ANSI C语言编写、遵守 BSD 协议、支持网络、可基于内存、分布式存储数据库,下面一起来看一下,希望对大家有帮助。

实例详解Redis Cluster集群收缩主从节点实例详解Redis Cluster集群收缩主从节点Apr 21, 2022 pm 06:23 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis Cluster集群收缩主从节点的相关问题,包括了Cluster集群收缩概念、将6390主节点从集群中收缩、验证数据迁移过程是否导致数据异常等,希望对大家有帮助。

Redis实现排行榜及相同积分按时间排序功能的实现Redis实现排行榜及相同积分按时间排序功能的实现Aug 22, 2022 pm 05:51 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,希望对大家有帮助。

详细解析Redis中命令的原子性详细解析Redis中命令的原子性Jun 01, 2022 am 11:58 AM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于原子操作中命令原子性的相关问题,包括了处理并发的方案、编程模型、多IO线程以及单命令的相关内容,下面一起看一下,希望对大家有帮助。

一文搞懂redis的bitmap一文搞懂redis的bitmapApr 27, 2022 pm 07:48 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了bitmap问题,Redis 为我们提供了位图这一数据结构,位图数据结构其实并不是一个全新的玩意,我们可以简单的认为就是个数组,只是里面的内容只能为0或1而已,希望对大家有帮助。

实例详解Redis实现排行榜及相同积分按时间排序功能的实现实例详解Redis实现排行榜及相同积分按时间排序功能的实现Aug 26, 2022 pm 02:09 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,下面一起来看一下,希望对大家有帮助。

一起聊聊Redis实现秒杀的问题一起聊聊Redis实现秒杀的问题May 27, 2022 am 11:40 AM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于实现秒杀的相关内容,包括了秒杀逻辑、存在的链接超时、超卖和库存遗留的问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor