1. Overview of the problem
The versions after Redis 6.0 abandoned the design of single-threaded model. Redis, which originally used single-threaded operation, also began to selectively use multi-threaded model. At first glance, Redis The author is so awesome, but he can't escape the "law of true fragrance".
If you think about it carefully, this question can actually be split into two main questions:
(1) Why did Redis choose a single-threaded model at the beginning (the benefits of single-threading)?
(2) Why did Redis add multi-threading after 6.0 (in some cases, single-threading has shortcomings, which can be solved by multi-threading)?
In fact, it’s not that the author has not escaped the True Fragrance Theorem, but as time goes by, more and more problems arise. The original design must be somewhat out of date, and changes should be made. OK, with two questions, let’s analyze them carefully.
2. Why did Redis use single thread at the beginning?
Whether it is single thread or multi-thread, it is all to improve the development efficiency of Redis, because Redis is a memory-based database and needs to be processed. A large number of external network requests inevitably require multiple IOs. Fortunately, Redis uses many excellent mechanisms to ensure its high efficiency. So why is Redis designed in single-threaded mode? It can be summarized as follows:
(1) IO multiplexing
Let’s take a look at the top-level design of Redis.
FD is a file descriptor, which means whether the current file is readable, writable or abnormal. Use the I/O multiplexing mechanism to monitor the readable and writable status of multiple file descriptors simultaneously. You can understand it as having the characteristics of multi-threading.
Once a network request is received, it will be processed quickly in memory. Since most operations are purely memory-based, the processing speed will be very fast. That is to say, in single-threaded mode, even if there is a lot of connected network processing, it can still be ignored in high-speed memory processing because of IO multiplexing.
(2) High maintainability
Although the multi-threading model performs well, it will introduce uncertainty in the order of program execution, thus causing problems related to concurrent reading and writing. . Single-threaded mode allows for easy debugging and testing.
(3) Based on memory, the efficiency is still high in single-threaded state
Multi-threading can make full use of CPU resources, but for Redis, because the memory-based speed is quite high, It can handle 100,000 user requests in one second. If 100,000 in one second is not enough, then we can use Redis sharding technology to deliver it to different Redis servers. This cooking method avoids introducing a lot of multi-threaded operations in the same Redis service.
Unless AOF backup is required, this operation basically does not involve any I/O operations because it is memory-based. Since the reading and writing of these data only occur in memory, the processing speed is very fast; using a multi-threading model to handle all external requests may not be a good solution.
Now we know that it can be basically summed up in two sentences. It is based on memory and uses multiplexing technology. The single-thread speed is very fast and the characteristics of multi-threading are guaranteed. Because there is no need to use multithreading.
3. Why introduce multi-threading?
We just mentioned the advantages of single-threading, but now I want to talk about why we need to introduce multi-threading and overcome the discomfort with it. The introduction of multi-threading shows that in some aspects of Redis, single-threading no longer has advantages.
Because the read/write system calls for reading and writing the network take up most of the CPU time during Redis execution, if the network reading and writing is made multi-threaded, the performance will be greatly improved.
Redis's multi-threading is only used for network data reading and writing and protocol parsing, while command execution is still single-threaded. The reason for this design is that we do not want Redis to become complicated due to multi-threading, and we need to control concurrency issues such as keys, lua, transactions, LPUSH/LPOP, etc.
Redis has added some deletion operations that can be processed asynchronously by other threads in the latest versions, which are the UNLINK
and FLUSHALL ASYNC## we mentioned above. # and
FLUSHDB ASYNC, why do we need these deletion operations, and why do they need to be processed asynchronously through multi-threading?
The above is the detailed content of Why does Redis introduce multi-threading?. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

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),

Notepad++7.3.1
Easy-to-use and free code editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
