Anonymous
8/21/2025, 12:47:40 PM
No.106334527
>>106334354
You're basically adding a shitty version of garbage collection when you use RC. It cannot mange your allocations by magic. There is a program or additional code injected into your program that is performing the same role as a run-time's GC (and it's slower than something like Java's or Go's GC). You can cope with semantics all you want but you're telling Rust to manage memory for you as soon as you reach for that.
You're basically adding a shitty version of garbage collection when you use RC. It cannot mange your allocations by magic. There is a program or additional code injected into your program that is performing the same role as a run-time's GC (and it's slower than something like Java's or Go's GC). You can cope with semantics all you want but you're telling Rust to manage memory for you as soon as you reach for that.