select, poll, epoll
关于 select, poll, epoll,网络 IO 演变发展过程和模型介绍 这篇文章讲得很好,本文就不浪费笔墨了。
Redis 如何针对不同操作系统,选择不同的 IO 多路复用机制,具体代码在 ae.c。
/* Include the best multiplexing layer supported by this system.
* The following should be ordered by performances, descending. */
#ifdef HAVE_EVPORT
#include "ae_evport.c"
#else
#ifdef HAVE_EPOLL
#include "ae_epoll.c"
#else
#ifdef HAVE_KQUEUE
#include "ae_kqueue.c"
#else
#include "ae_select.c"
#endif
#endif
#endif
从代码中可看到,有 epoll 就会使用 epoll(Linux);没有的话则会使用 kqueue(MacOS)或 select(Windows)。
源码分析
由于我的开发环境是 Mac,所以分析 ae_kqueue.c 文件。在 Linux 系统下可以分析 ae_epoll.c 文件。kqueue 的详细介绍:Kernel Queues and Events。
typedef struct aeApiState {
int kqfd;
struct kevent *events;
/* Events mask for merge read and write event.
* To reduce memory consumption, we use 2 bits to store the mask
* of an event, so that 1 byte will store the mask of 4 events. */
char *eventsMask;
} aeApiState;
kevent 定义在 event.h 源文件中。
struct kevent {
uintptr_t ident; /* identifier for this event */
int16_t filter; /* filter for event */
uint16_t flags; /* general flags */
uint32_t fflags; /* filter-specific flags */
intptr_t data; /* filter-specific data */
void *udata; /* opaque user data identifier */
};
具体源码 // todo。
参考链接
-
[极客时间:09 Redis 事件驱动框架(上):何时使用 select、poll、epoll?](https://time.geekbang.org/column/article/407901) - 深入剖析 Netty 源码设计(一)——深入理解 select poll epoll 机制
- 网络 IO 演变发展过程和模型介绍
- Kernel Queues and Events
- Kernel Queues: An Alternative to File System Events
Redis 源码简洁剖析系列
- Redis 源码简洁剖析 01 - 环境配置
- Redis 源码简洁剖析 02 - SDS 字符串
- Redis 源码简洁剖析 03 - Dict Hash 基础
- Redis 源码简洁剖析 04 - Sorted Set 有序集合
- Redis 源码简洁剖析 05 - ziplist 压缩列表
- Redis 源码简洁剖析 06 - quicklist 和 listpack
- Redis 源码简洁剖析 07 - main 函数启动
- Redis 源码简洁剖析 08 - epoll
- Redis 源码简洁剖析 09 - Reactor 模型
- Redis 源码简洁剖析 10 - aeEventLoop 及事件
- Redis 源码简洁剖析 11 - 主 IO 线程及 Redis 6.0 多 IO 线程
- Redis 源码简洁剖析 12 - 一条命令的处理过程
- Redis 源码简洁剖析 13 - RDB 文件
- Redis 源码简洁剖析 14 - Redis 持久化
- Redis 源码简洁剖析 15 - AOF
- Redis 源码简洁剖析 16 - 客户端
- Redis 源码简洁剖析 17 - 服务器
- Redis 源码简洁剖析 18 - 复制、哨兵 Sentinel
Java 编程思想-最全思维导图-GitHub 下载链接,需要的小伙伴可以自取~
原创不易,希望大家转载时请先联系我,并标注原文链接。
我的公众号
coding 笔记、读书笔记、点滴记录,以后的文章也会同步到公众号(Coding Insight)中,希望大家关注^_^