Rust and WASM to improve Node.js performance

Learn why a team at IBM turned to Rust and WebAssembly in tandem to speed their Node.js application performance. Read more

Similar

Caches in Rust

In this post I’ll describe how to implement caches in Rust. It is inspired by two recent refactors I landed at nearcore (nearcore#6549, nearcore#6811). Based on that experience, it seems that implementing caches wrong is rather easy, and making a mistake ... (more…)

Read more »

Unique vs. Shared Data in Rust

The Rust programming language is designed to ensure memory safety, using a mix of compile-time and run-time checks to stop programs from accessing invalid pointers or sharing memory across threads without proper synchronization. (more…)

Read more »