Redis Single Threading Model

Source: Internet
Author: User
Tags epoll redis

Redis uses its own implementation of the event separator, high efficiency, the internal use of non-blocking execution mode, throughput capacity is relatively large.

However, because the general memory operation is simple access operation, the thread takes a relatively short time, the main problem is on Io, so the Redis model is appropriate, but if a thread has a problem that causes the thread to take a long time, then Reids's single-threaded model is more efficient .

The reasons for the overall speed are as follows:
1) Most requests are purely memory-operated (very fast)
2) single threaded to avoid unnecessary context switching and competitive conditions
3) non-blocking IO
The internal implementation adopts epoll, and adopts the simple event framework which is implemented by epoll+ itself. Epoll read, write, close, connect to events, and then take advantage of the Epoll multiplexing feature, never waste a little time on Io

These 3 conditions are not independent of each other, especially the first one, if the request is time-consuming, with single-threaded throughput and performance can be imagined. It should be said that Redis has chosen the appropriate technical solution for a particular scenario.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.