Remix.run Logo
codedokode 4 days ago

How do you implement "commit" part safely (writing changes to the object) without locking the object?

titzer 4 days ago | parent [-]

One way is that the writer thread prepares a completely new copy of the object in a private area and then either compare-and-swaps a pointer to it, or executes a store with a store-store barrier (depending on details of the STM system around it).

codedokode 4 days ago | parent [-]

Interesting, it's almost like immutable data structures.