search
HomeDatabaseRedisAn article will help you thoroughly understand Redis affairs

This article brings you relevant knowledge about Redis, which mainly introduces the relevant content about transactions. It is essentially a collection of commands. Transactions support the execution of multiple commands at one time. , during the transaction execution process, the commands in the queue will be executed sequentially; let's take a look at it, I hope it will be helpful to everyone.

Recommended learning: Redis video tutorial

Introduction to Redis transactions

Redis is just Provides simple transaction functions. Its essence is a set of commands. A transaction supports the execution of multiple commands at one time. During the transaction execution process, the commands in the queue will be executed sequentially. Command requests submitted by other clients will not be inserted into the sequence of commands executed by this transaction. The execution process of commands is executed sequentially, but atomicity is not guaranteed. There is no isolation level like MySQL, and you can roll back data and other advanced operations after a problem occurs. This will be analyzed in detail later.

Redis basic transaction instructions

Redis provides the following basic instructions related to transactions.

MULTI When the transaction is enabled, Redis will add subsequent commands to the queue without actually executing them until EXEC is used to execute these commands in atomic order. EXECExecute all commands in the transaction blockDISCARDCancel the transaction and give up executing all commands in the transaction blockWATCHMonitor one or more keys, if the transaction is executing If these keys are modified by other commands before, the transaction will be terminated and no commands in the transaction will be executed UNWATCHCancelWATCHThe command monitors all keys

General In this case, a simple Redis transaction is mainly divided into the following parts:

Execute the command MULTI to start a transaction. After the transaction is started, multiple commands to execute the command will be put into a queue in sequence. If the placement is successful, the QUEUED message will be returned. Execute the command EXEC to submit the transaction. Redis will execute the commands in the queue in sequence and return the results of all commands in sequence. (If you want to give up committing the transaction, execute DISCARD).

The following figure briefly introduces the process of Redis transaction execution:

Example analysis

Let’s go through some practical examples below. Let’s experience the transactions in Redis. We also mentioned earlier that Redis transactions are not real transactions and cannot fully meet the ACID characteristics of standard transactions. Through the following example, let's take a look at what are the problems with Redis's "bankrupt version" transaction.

[A] Normal execution of submission

127.0.0.1:6379> MULTI
OK
127.0.0.1:6379> SET a 1
QUEUED
127.0.0.1:6379> SET b 2
QUEUED
127.0.0.1:6379> EXEC
1) OK
2) OK
127.0.0.1:6379> GET a
"1"
127.0.0.1:6379> GET b
"2"

After opening the transaction, the submitted commands will be added to the queue (QUEUED). After executing EXEC, the commands will be executed step by step and the results will be returned. Does this look similar to the transaction operations we usually use in MySQL, such as start transaction and commit?

[B]Cancel the transaction normally

127.0.0.1:6379> MULTI
OK
127.0.0.1:6379> SET a 1
QUEUED
127.0.0.1:6379> SET b 2
QUEUED
127.0.0.1:6379> DISCARD
OK
127.0.0.1:6379> 
127.0.0.1:6379> GET a
(nil)
127.0.0.1:6379> GET b
(nil)

After opening the transaction, if you do not want to continue the transaction, use DISCARD to cancel it. The previously submitted command will not actually be executed, and the related key value will not change. This also looks similar to MySQL transactions, similar to start transaction and rollback.

[C]WATCH monitoring key

-- 线程 1 中执行
127.0.0.1:6379> del a
(integer) 1
127.0.0.1:6379> get a
(nil)
127.0.0.1:6379> SET a 0
OK
127.0.0.1:6379> WATCH a
OK
127.0.0.1:6379> MULTI
OK
127.0.0.1:6379> SET a 1
QUEUED
----------------------------------------- 线程 2 中执行
----------------------------------------- 127.0.0.1:6379> SET a 2
----------------------------------------- OK
127.0.0.1:6379> EXEC
(nil)
127.0.0.1:6379> GET a
"2"

WATCH the value of a before opening the transaction, and then open the transaction. The value of a is set in another thread (SET a 2), and then EXEC is executed to execute the transaction. The result is nil,
indicating that the transaction has not been executed. Because the value of a changed after WATCH, the transaction was canceled.

It should be noted that this has nothing to do with the time when the transaction is started, and has nothing to do with the order in which MULTI and another thread set the value of a. As long as it changes after WATCH. Regardless of whether the transaction has been started, it will be canceled when executing the transaction (EXEC).
Under normal circumstances, when executing EXEC and DISCARD commands, UNWATCH will be executed by default.

[D] Syntax error

127.0.0.1:6379> SET a 1
OK
127.0.0.1:6379> SET b 2
OK
127.0.0.1:6379> MULTI
OK
127.0.0.1:6379> SET a 11
QUEUED
127.0.0.1:6379> SETS b 22
(error) ERR unknown command 'SETS'
127.0.0.1:6379> EXEC
(error) EXECABORT Transaction discarded because of previous errors.
127.0.0.1:6379> GET a
"1"
127.0.0.1:6379> GET b
"2"

When Redis starts a transaction, if there is a syntax error in the added command, the transaction submission will fail. In this case, none of the commands in the transaction queue will be executed. As in the above example, the values ​​of a and b are both original values.
Such errors that occur before EXEC, such as command name errors, command parameter errors, etc., will be detected before EXEC is executed. Therefore, when these errors occur, the transaction will be canceled and all commands in the transaction will be canceled. Will not be executed. (Does this situation look a bit like a rollback?)

[E]Runtime error

127.0.0.1:6379> MULTI
OK
127.0.0.1:6379> SET a 1
QUEUED
127.0.0.1:6379> SET b hello
QUEUED
127.0.0.1:6379> INCR b
QUEUED
127.0.0.1:6379> EXEC
1) OK
2) OK
3) (error) ERR value is not an integer or out of range
127.0.0.1:6379> GET a
"1"
127.0.0.1:6379> GET b
"hello"

当 Redis 开启一个事务后,添加的命令没有出现前面说的语法错误,但是在运行时检测到了类型错误,导致事务最提交失败(说未完全成功可能更准确点)。此时事务并不会回滚,而是跳过错误命令继续执行。
如上面的例子,未报错的命令值已经修改,a 被设置成了 1,b 被设置为了 hello,但是报错的值未被修改,即 INCR b 类型错误,并未执行,b 的值也没有被再更新。

Redis 事务与 ACID

通过上面的例子,我们已经知道 Redis 的事务和我们通常接触的 MySQL 等关系数据库的事务还有有一定差异的。它不保证原子性。同时 Redis 事务也没有事务隔离级别的概念。下面我们来具体看下 Redis 在 ACID 四个特性中,那些是满足的,那些是不满足的。
事务执行可以分为命令入队(EXEC 执行前)和命令实际执行(EXEC 执行之后)两个阶段。下面我们在分析的时候,很多时候都会分这两种情况来分析。

原子性(A)

上面的实例分析中,[A],[B],[C]三种正常的情况,我们可以很明显的看出,是保证了原子性的。
但是一些异常情况下,是不满足原子性的。

如 [D] 所示的情况,客户端发送的命令有语法错误,在命令入队列时 Redis 就判断出来了。等到执行 EXEC 命令时,Redis 就会拒绝执行所有提交的命令,返回事务失败的结果。此种情况下,事务中的所有命令都不会被执行了,是保证了原子性的。 如 [E] 所示的情况,事务操作入队时,命令和操作类型不匹配,此时 Redis 没有检查出错误(这类错误是运行时错误)。等到执行 EXEC 命令后,Redis 实际执行这些命令操作时,就会报错。需要注意的是,虽然 Redis 会对错误的命令报错不执行,但是其余正确的命令会依次执行完。此种情况下,是无法保证原子性的。 在执行事务的 EXEC 命令时,Redis 实例发生了故障,导致事务执行失败。此时,如果开启了 AOF 日志,那么只会有部分事务操作被记录到 AOF 日志中。使用redis-check-aof工具检测 AOF 日志文件,可以把未完成的事务操作从 AOF 文件中去除。这样一来,使用 AOF 文件恢复实例后,事务操作不会被再执行,从而保证了原子性。若使用的 RDB 模式,最新的 RDB 快照是在 EXEC 执行之前生成的,使用快照恢复之后,事务中的命令也都没有执行,从而保证了原子性。若 Redis 没有开启持久化,则重启后内存中的数据全部丢失,也就谈不上原子性了。 一致性(C)

一致性指的是事务执行前后,数据符合数据库的定义和要求。这点在 Redis 事务中是满足的,不论是发生语法错误还是运行时错误,错误的命令均不会被执行。

EXEC 执行之前,入队报错(实例分析中的语法错误)

事务会放弃执行,故可以保证一致性。

EXEC 执行之后,实际执行时报错(实例分析中的运行时错误)

错误的命令不会被执行,正确的命令被执行,一致性可以保证。

EXEC 执行时,实例宕机

若 Redis 没有开启持久化,实例宕机重启后,数据都没有了,数据是一致的。
若配置了 RDB 方式,RDB 快照不会在事务执行时执行。所以,若事务执行到一半,实例发生了故障,此时上一次 RDB 快照中不会包含事务所做的修改,而下一次 RDB 快照还没有执行,实例重启后,事务修改的数据会丢失,数据是一致的。若事务已经完成,但新一次的 RDB 快照还没有生成,那事务修改的数据也会丢失,数据也是一致的。
若配置了 AOF 方式。当事务操作还没被记录到 AOF 日志时,实例就发生故障了,使用 AOF 日志恢复后数据是一致的。若事务中的只有部分操作被记录到 AOF 日志,可以使用 redis-check-aof清除事务中已经完成的操作,数据库恢复后数据也是一致的。

隔离性(I) 并发操作在 EXEC 执行前,隔离性需要通过 WATCH 机制来保证 并发操作在 EXEC 命令之后,隔离性可以保证

情况 a 可以参考前面的实例分析 WATCH 命令的使用。
情况 b,由于 Redis 是单线程执行命令,EXEC 命令执行后,Redis 会保证先把事务队列中的所有命令执行完之后再执行之后的命令。

持久性(D)

If Redis does not enable persistence, then all data will be stored in memory. Once restarted, the data will be lost, so the durability of the transaction at this time cannot be guaranteed.
If Redis has persistence turned on, data may still be lost when the instance crashes and is restarted, so persistence cannot be fully guaranteed.
Therefore, we can say that Redis transactions cannot necessarily guarantee durability, and can only guarantee durability under special circumstances.

Regarding why Redis still loses data after turning on persistence, the author will compile a separate article related to Redis persistence and master-slave to introduce it. Here is a brief introduction.
If the RDB mode is configured, after a transaction is executed but before the next RDB snapshot is executed, the Redis instance crashes and the data will be lost.
If the AOF mode is configured, and the three parameters of the AOF mode The configuration options no, everysec, and always may also cause data loss.

To summarize, Redis transactions support ACID:

It has a certain degree of atomicity, but does not support rollback. It meets consistency and isolation and cannot guarantee durability. Why does Redis transaction not support rollback? Roll

Look at the description on the official website:

What about rollbacks?
Redis does not support rollbacks of transactions since supporting rollbacks would have a significant impact on the simplicity and performance of Redis.

Most situations that require transaction rollback are caused by program errors. This situation is generally in the development environment and should not occur in the production environment.
For logical errors, for example, it should add 1, but the result is written as adding 2. This situation cannot be solved by rolling back.
Redis pursues simplicity and efficiency, but the implementation of traditional transactions is relatively complex, which is contrary to the design idea of ​​Redis. When we enjoy the speed of Redis, we can't ask for more from it.

Recommended learning: Redis video tutorial

The above is the detailed content of An article will help you thoroughly understand Redis affairs. 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实现排行榜及相同积分按时间排序功能的实现实例详解Redis实现排行榜及相同积分按时间排序功能的实现Aug 26, 2022 pm 02:09 PM

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

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

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

一起聊聊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

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

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

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools