Is redis multi-threaded?
Redis is single-threaded. Single-threaded means that the network request module uses one thread (so there is no need to consider concurrency security), that is, one Threads handle all network requests, and other modules still use multiple threads.
The reasons why redis can execute quickly:
(1) Most requests are pure memory operations (very fast)
(2) Use a single thread to avoid Eliminate unnecessary context switching and race conditions
(3) Non-blocking IO-IO multiplexing (What does IO multiplexing mean?)
There are three methods in IO multiplexing :select,poll,epoll. It should be noted that select and poll are thread-unsafe, while epoll is thread-safe.
The internal implementation of redis uses epoll, using a simple event framework implemented by epoll itself. Read, write, close, and connect in epoll are all converted into events, and then use the multiplexing feature of epoll to never waste any time on io. These three conditions are not independent of each other, especially the first one, if the request All are time-consuming, and the throughput and performance of using a single thread can be imagined. It should be said that redis has chosen the appropriate technical solution for special scenarios.
Internal implementation of redis:
The internal implementation uses epoll, using a simple event framework implemented by epoll itself. Read, write, close, and connect in epoll are all converted into events, and then use the multiplexing feature of epoll to never waste any time on io. These three conditions are not independent of each other, especially the first one, if the request All are time-consuming, and the throughput and performance of using a single thread can be imagined. It should be said that redis has chosen the appropriate technical solution for special scenarios.
Redis on thread safety issues:
Redis actually adopts the concept of thread closure, closing tasks in one thread, which naturally avoids thread safety issues, but for those who need to rely on multiple redis For composite operations, locks are still required, and they may be distributed locks.
What are the benefits of using Redis?
(1) It is fast because the data is stored in memory, similar to HashMap. The advantage of HashMap is that the time complexity of search and operation is O(1)
(2) Rich support Data type, supports string, list, set, sorted set, hash
(3) Supports transactions, operations are all atomic. The so-called atomicity means that all changes to the data are either executed or not executed at all
(4) Rich features: can be used for caching, messaging, setting expiration time by key, it will be automatically deleted after expiration
Redis common performance problems and solutions:
(1) Master is best not to do any persistence work, such as RDB memory snapshots and AOF log files; (Master writes memory snapshots, and the save command schedules the rdbSave function, which will block the work of the main thread. When the snapshot is relatively large, the impact on performance is: If the data is very large, the service will be suspended intermittently, so it is best not to write memory snapshots on the Master; if the AOF file is too large, it will affect the recovery speed of the Master restart)
(2) If the data is important, a certain Slave should enable AOF backup Data, policy is set to synchronize once per second
(3) For the speed of master-slave replication and the stability of the connection, it is best for the Master and Slave to be in the same LAN
(4) Try to Avoid adding slave libraries to the master library that is under great pressure
(5) Do not use a graph structure for master-slave replication. It is more stable to use a one-way linked list structure, that is: Master <- Slave1 <- Slave2 <- Slave3...; This structure facilitates solving the single point of failure problem and realizing the replacement of the Master by the Slave. If the Master hangs up, you can immediately enable Slave1 as the Master, leaving everything else unchanged.
For more Redis related knowledge, please visit the Redis usage tutorial column!
The above is the detailed content of Is redis multi-threaded?. For more information, please follow other related articles on the PHP Chinese website!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



The article discusses choosing shard keys in Redis Cluster, emphasizing their impact on performance, scalability, and data distribution. Key issues include ensuring even data distribution, aligning with access patterns, and avoiding common mistakes l

The article discusses implementing authentication and authorization in Redis, focusing on enabling authentication, using ACLs, and best practices for securing Redis. It also covers managing user permissions and tools to enhance Redis security.

The article discusses using Redis for job queues and background processing, detailing setup, job definition, and execution. It covers best practices like atomic operations and job prioritization, and explains how Redis enhances processing efficiency.

The article discusses strategies for implementing and managing cache invalidation in Redis, including time-based expiration, event-driven methods, and versioning. It also covers best practices for cache expiration and tools for monitoring and automat

Article discusses monitoring Redis Cluster performance and health using tools like Redis CLI, Redis Insight, and third-party solutions like Datadog and Prometheus.

The article explains how to use Redis for pub/sub messaging, covering setup, best practices, ensuring message reliability, and monitoring performance.

The article discusses using Redis for session management in web applications, detailing setup, benefits like scalability and performance, and security measures.

Article discusses securing Redis against vulnerabilities, focusing on strong passwords, network binding, command disabling, authentication, encryption, updates, and monitoring.
