Hacker News new | ask | show | jobs
by menaerus 190 days ago
> Scalability is always going to be poor when writers attempt to modify the same object, no matter the solution you implement.

MVCC.

1 comments

Well, yes, that's one way of avoiding mutating the same object of course.
Technically it is not because eventually it will be mutated, and that's one way of achieving the scalability in multiple writers scenario.