You need to enable JavaScript to run this app.
Readit News
Posted by
u/ianopolous
5 months ago
The Evolution of Garbage Collectors: JVM vs. Go vs. Rust Latency Shootout
codemia.io/blog/path/The-...
j_seigh
·
5 months ago
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.