Hacker News new | ask | show | jobs
by vlovich123 1171 days ago
Rust doesn’t use multi threaded Rc unless you actually need to send it across threads.
1 comments

I'm aware. Rust isn't a conventional "managed language" which is why I consciously omitted it from the above list. In an increasingly multi-threaded world, you just have to use the synchronized version of RC (aka Arc<T> in Rust).