The internal implementation of redis uses epoll, using epoll + a simple event framework implemented by 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
The internal implementation of redis uses epoll, using epoll + a simple event framework implemented by 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