Tag: #async-io
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 2 posts
Zig 0.16.0 — The Release That Turned I/O into an Interface, and the Bill It Came With
Zig 0.16.0, released on April 14, 2026, changed the standard library so that every I/O operation takes an Io instance as an argument. It takes the old Zig habit of passing an Allocator as an argument and applies the same
2026-07-16 · 23 min read #zig#systems-programming#async-io#compilerComplete 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#proactor