Tag: #tokio
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 7 posts
Async Rust: async/await and the Tokio Runtime
Async in Rust has a different flavor from other languages. A Future is just a lazy state machine, and without an executor to poll it, nothing happens. What a Future really is, what .await means, the executor/runtime (Tok
2026-06-29 · 11 min read #rust#async#tokioRust Ecosystem 2026 Deep-Dive — Rust 1.85+, tokio, axum, actix-web, sqlx, Bevy, Tauri, Leptos, Dioxus, Embassy, Cargo
A full tour of the Rust ecosystem as of May 2026. Rust 1.85 (2024 edition), tokio runtime internals, axum/actix-web 5/poem/leptos/dioxus, sqlx/sea-orm/diesel 2, Bevy 0.15, Tauri 2 (desktop + mobile), Embassy (nostd async
2026-05-16 · 21 min read #rust#tokio#axum#actix-web#sqlxModern Rust 2026 — Rust 1.85 / Edition 2024 / Tokio / Axum 0.8 / Loco / Leptos / Bevy / Tauri 2 / Embassy Deep-Dive Guide
Rust 1.85 / 2024 edition (Feb 2025) is not just a version bump. RPIT lifetime capture, async closures, never type fallback, and gen blocks together make Rust code noticeably shorter. This post walks the entire 2026-May R
2026-05-16 · 19 min read #rust#rust-1-85#edition-2024#tokio#axumThe Return of Rust and Systems Programming — Ownership, Borrowing, Lifetime, Trait, Async, Tokio, Cargo, WebAssembly (2025)
Why is Rust the "most loved language" for 9 years running? From Graydon Hoare personal project to the Linux kernel, the Ownership and Borrowing revolution, Lifetime magic, Trait system, zero-cost abstractions, Tokio asyn
2026-04-15 · 14 min read #rust#systems-programming#memory-safety#tokio#webassemblyRust Tokio Runtime Deep Dive — Future, Waker, Work-Stealing, Pin, Zero-Cost Async (2025)
Rust async/await promises "infinite concurrency with no runtime", but the internals are intricate. This post dissects the Tokio runtime from the ground up: how async fn compiles into a state machine, the Future/Poll/Wake
2026-04-15 · 15 min read #rust#tokio#async#runtime#concurrencyModern Backend Runtimes 2025 — Node 22, Bun, Deno, WinterJS, Cloudflare Workers, V8 Isolates, Tokio (S7 E1)
Node 22 added permissions and native TS. Bun 1.1 is a full toolchain. Deno reverted on npm compatibility. Cloudflare Workers, Vercel Edge, and Deno Deploy popularized V8 Isolates. And Tokio/Rust quietly ate the performan
2026-04-15 · 7 min read #backend#runtime#node22#bun#denoComplete 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