Hacker News new | ask | show | jobs
The Evolution of Garbage Collectors: JVM vs. Go vs. Rust Latency Shootout (codemia.io)
1 points by ianopolous 269 days ago
1 comments

I'm assuming they're using an unbounded MPMC queue. With GC you can use a lock-free queue, otherwise you have to use mutexes, or reference counting which is nearly as bad.