Tag: #epoll
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 3 posts
Linux I/O Evolution Deep Dive — blocking, select, poll, epoll, io_uring (2025)
How do you handle not 10,000 but 1,000,000 concurrent connections on a single server? 30 years of Linux I/O API evolution — from the 1970s blocking read, through the limits of select/poll, the epoll revolution, to iourin
2026-04-15 · 11 min read #linux#io#epoll#io-uring#asyncComplete Guide to Async I/O Models 2025: epoll, io_uring, Reactor/Proactor, and async/await Internals
Everything about async I/O. Blocking vs non-blocking vs async, the select/poll/epoll/kqueue evolution, the iouring revolution, Reactor/Proactor patterns, Tokio/libuv internals, and what async/await actually does.
2026-04-15 · 12 min read #async-io#epoll#io-uring#reactor#proactorTCP/IP & Network Programming Deep Dive 2025: Sockets, HTTP/3, QUIC, DNS, TLS 1.3
Network programming deep dive! TCP 3-way/4-way handshake, congestion control (Cubic/BBR), socket programming (epoll/kqueue/iouring), HTTP/1.1 vs HTTP/2 vs HTTP/3 (QUIC), DNS resolution, TLS 1.3 handshake, network debuggi
2026-04-14 · 20 min read #tcp-ip#networking#socket#http3#quic