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
Redis: The Advantages of a NoSQL ApproachRedis: The Advantages of a NoSQL ApproachApr 27, 2025 am 12:09 AM

Redis is a NoSQL database that provides high performance and flexibility. 1) Store data through key-value pairs, suitable for processing large-scale data and high concurrency. 2) Memory storage and single-threaded models ensure fast read and write and atomicity. 3) Use RDB and AOF mechanisms to persist data, supporting high availability and scale-out.

Redis: Understanding Its Architecture and PurposeRedis: Understanding Its Architecture and PurposeApr 26, 2025 am 12:11 AM

Redis is a memory data structure storage system, mainly used as a database, cache and message broker. Its core features include single-threaded model, I/O multiplexing, persistence mechanism, replication and clustering functions. Redis is commonly used in practical applications for caching, session storage, and message queues. It can significantly improve its performance by selecting the right data structure, using pipelines and transactions, and monitoring and tuning.

Redis vs. SQL Databases: Key DifferencesRedis vs. SQL Databases: Key DifferencesApr 25, 2025 am 12:02 AM

The main difference between Redis and SQL databases is that Redis is an in-memory database, suitable for high performance and flexibility requirements; SQL database is a relational database, suitable for complex queries and data consistency requirements. Specifically, 1) Redis provides high-speed data access and caching services, supports multiple data types, suitable for caching and real-time data processing; 2) SQL database manages data through a table structure, supports complex queries and transaction processing, and is suitable for scenarios such as e-commerce and financial systems that require data consistency.

Redis: How It Acts as a Data Store and ServiceRedis: How It Acts as a Data Store and ServiceApr 24, 2025 am 12:08 AM

Redisactsasbothadatastoreandaservice.1)Asadatastore,itusesin-memorystorageforfastoperations,supportingvariousdatastructureslikekey-valuepairsandsortedsets.2)Asaservice,itprovidesfunctionalitieslikepub/submessagingandLuascriptingforcomplexoperationsan

Redis vs. Other Databases: A Comparative AnalysisRedis vs. Other Databases: A Comparative AnalysisApr 23, 2025 am 12:16 AM

Compared with other databases, Redis has the following unique advantages: 1) extremely fast speed, and read and write operations are usually at the microsecond level; 2) supports rich data structures and operations; 3) flexible usage scenarios such as caches, counters and publish subscriptions. When choosing Redis or other databases, it depends on the specific needs and scenarios. Redis performs well in high-performance and low-latency applications.

Redis's Role: Exploring the Data Storage and Management CapabilitiesRedis's Role: Exploring the Data Storage and Management CapabilitiesApr 22, 2025 am 12:10 AM

Redis plays a key role in data storage and management, and has become the core of modern applications through its multiple data structures and persistence mechanisms. 1) Redis supports data structures such as strings, lists, collections, ordered collections and hash tables, and is suitable for cache and complex business logic. 2) Through two persistence methods, RDB and AOF, Redis ensures reliable storage and rapid recovery of data.

Redis: Understanding NoSQL ConceptsRedis: Understanding NoSQL ConceptsApr 21, 2025 am 12:04 AM

Redis is a NoSQL database suitable for efficient storage and access of large-scale data. 1.Redis is an open source memory data structure storage system that supports multiple data structures. 2. It provides extremely fast read and write speeds, suitable for caching, session management, etc. 3.Redis supports persistence and ensures data security through RDB and AOF. 4. Usage examples include basic key-value pair operations and advanced collection deduplication functions. 5. Common errors include connection problems, data type mismatch and memory overflow, so you need to pay attention to debugging. 6. Performance optimization suggestions include selecting the appropriate data structure and setting up memory elimination strategies.

Redis: Real-World Use Cases and ExamplesRedis: Real-World Use Cases and ExamplesApr 20, 2025 am 12:06 AM

The applications of Redis in the real world include: 1. As a cache system, accelerate database query, 2. To store the session data of web applications, 3. To implement real-time rankings, 4. To simplify message delivery as a message queue. Redis's versatility and high performance make it shine in these scenarios.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

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.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment