17
submitted 11 months ago by njaard@lemmy.world to c/rustlang@lemmyrs.org
you are viewing a single comment's thread
view the rest of the comments
[-] Esp@lemmy.blahaj.zone 3 points 11 months ago

ARC can memory leak if you don’t properly use weak references when appropriate. You trade GC ticks for having to deal with a counter. generally GC will (raw language performance aside) have higher throughput (because its not spending time doing ref counts) but will have more sporadic latency because if the GC ticks, then your program is basically on pause until it’s done.

Comparing them as if one is better than the other feels like painfully missing the point. Completely different memory models. And if you’re only slightly making use of ARC, then switching to a GC is a big jump.

[-] TheAgeOfSuperboredom@lemmy.ca 2 points 11 months ago

I guess that's my point. The article criticizes reference counting as if it's strictly worse, but it's not so simple. Even with a GC funny things can happen so it's worth understanding the memory model of the language.

this post was submitted on 08 Sep 2023
17 points (90.5% liked)

Rust Lang

2 readers
1 users here now

Rules [Developing]

Observe our code of conduct

Constructive criticism only

No endless relitigation

No low-effort content

No memes or image macros

No NSFW Content

founded 1 year ago
MODERATORS