43
Async Rust Is A Bad Language
(bitbashing.io)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
not really. first of all async in not the same as threading. And even then, while it makes parallel code easier to write (not easier to reason about), it still has the exact same footguns as anything else, as soon as you venture away from having only one consumer for every producer. Synchronization is still all on you