Increasing performance by reducing thread scheduling overhead and lock contention.| healeycodes.com
Aysnc/await in Rust is a couple years old now. Personally, I was very much into async Rust at first. Over the years, I've come to slowly dislike it. Now, I actively avoid it. In this article I will try and lay out the reasons for that. I have written plenty of async Rust code (about 100k lines async Rust, 50k non-async). I was partially inspired by many others who have similar thoughts about async/await.| trouble.mataroa.blog
Builds Tokio Runtime with custom configuration values.| docs.rs
Runs the provided closure on a thread where blocking is acceptable.| docs.rs
A problemI recently faced a conundrum in some Rust at the boundary between sync and async code. The library in question uses a persistent tokio executor inte...| thomask.sdf.org