How to quickly find Rust program bottlenecks online using a Go tool

It can be hard to find Rust programs’ performance bottlenecks online. By integrating pprof-rs in TiKV, we can use the Go tool pprof to visualize TiKV’s profiling data. This helps analyze the program’s performance online. Read more

Similar

AWS Joins the Rust Foundation

We celebrate today’s announcement of the creation of the Rust Foundation with the rest of the Rust community. As a founding member of the Rust Foundation, AWS is dedicated to the Rust Foundation’s mission to empower Rust maintainers to joyfully do their b... (more…)

Read more »

Pin, Unpin, and why Rust needs them

Using async Rust libraries is usually easy. It's just like using normal Rust code, with a little async or .await here and there. But writing your own async libraries can be hard. The first time I tried this, I got really confused by arcane, esoteric synta... (more…)

Read more »