6 ms·
Correct. The accepting socket is shared between multiple workers which each have its own fd for epoll or kqueue. Because of this a form of serialising the acce
by jvink 11y ago
Correct.
The accepting socket is shared between multiple workers which each have its own fd for epoll or kqueue. Because of this a form of serialising the accepts between said workers is needed to avoid unnecessary wakeups.
- rdtsc 11y agoActually that is being changed: http://lwn.net/Articles/633422/ http://lwn.net/Articles/633422/ See part about EPOLLEXCLUSIVE