io_uring when available, otherwise an epoll
fallback.
Create a new Linux poller.
io_uring when available, otherwise an epoll
fallback.
Create a new Linux poller with optional SQPOLL mode.
SQPOLL uses a kernel thread to poll the submission queue, eliminating submission syscalls. Falls back to non-SQPOLL io_uring if the kernel does not support SQPOLL, and to epoll if io_uring is unavailable.
sqpoll | Request SQPOLL mode. |
sqThreadIdle | Milliseconds the kernel SQPOLL thread stays alive after the last submission (default: 20 ms). |
io_uring (with SQPOLL if supported), otherwise
an epoll fallback.