nonblocking (2 articles)

Basic Reactor and Executor for non-blocking IO in Rust

23.11.2020 - 37m read - rust nonblocking async futures

In this second part of our journey to try and understand how async I/O works in Rust, we'll build a simple reactor/executor model.


Basic non-blocking IO using epoll in Rust

20.10.2020 - 28m read - rust epoll linux async nonblocking

This is the first blog post in a small series, where we will explore the basics of non-blocking IO in Rust. We'll start by building a minimal HTTP server using epoll