TCP server implementation using various methods.
- Server using threadpool
- Server using mio & threadpool
- Server using epoll & threadpool
- Server using tokio
- Server using io_uring
In addition, I also write a blog to describe io_uring:
io_uring 阅读笔记
epoll & thread pool
Efficient IO with io_uring
io_uring Introduction