8 ms·
Why do you think that most modern software should be written in a GC language?
by justwalt 5y ago
Why do you think that most modern software should be written in a GC language?
- sweeneyrod 5y agoWould you consider using a non-GC language that isn't Rust outside the various domains where C/C++ is the only realistic (non-Rust) choice?
- senderista 5y agoDeterministic memory deallocation makes it harder to reason about not just “easy” code, but also linked structures and lock-free algorithms (actually it is a substantial implementation obstacle for the latter). It must offset these costs by providing predictable latency or low memory footprint. Most applications don’t require either.