Reducing tail latencies in async Rust applications with automatic task yielding

Tokio is a runtime for asynchronous Rust applications. It allows writing code
using async & await syntax. For example: Read more

Similar

Learning Rust

I'm obviously not spending much time writing here. It's been a rather busy month at work, and I've been doing other things on the weekend that aren't particularly interesting to write about. (more…)

Read more »

Creating WASM-opt Rust bindings with cxx

wasm-opt is a component of the Binaryen toolkit, written in C++, that optimizes WebAssembly modules, I have recently created a wasm-opt bindings crate for Rust (with the extensive help of my partner Aimeedeer). The wasm-opt crate allows wasm-opt to be ins... (more…)

Read more »