|
|
|
|
|
by tjoff
22 days ago
|
|
GC is such a mistake though, you don't have to use rust but to never have to think about memory is a disservice to the programmer. Because that is something you always should do, and if you do then GC is nothing but a hindrance. For scripting etc. it is perfect though. |
|
Maybe you can write a carefully-tuned arena-and-slotmap that beats the pants off any GC. GC doesn't have to compete against P99.9 systems programming excellence. It has to compete against an endless soup of Arc, Box, and clone, and it will win this match without breaking a sweat.
[1] https://hamy.xyz/blog/2026-01_high-level-rust
[2] https://llogiq.github.io/2020/05/30/hi.html