Hacker News new | ask | show | jobs
by Evbn 4989 days ago
Yes, the entire topic of this thread is that by spending more RAM on GC, you can save CPU for memory management.
1 comments

But you don't actually save that much CPU and it's certainly not worth having to spend five times your working-set size just to equal explicitly-managed memory in performance terms.

Seriously, if you want cheap allocations use a freaking allocation pool. They're not that hard to implement in C++.