|
|
|
|
|
by kubanczyk
2338 days ago
|
|
I don't get math expressions example at all. One thread modifies one value, so there is no (mutability) problem to solve. You have customers' orders to buy items. One last item remains at your store. You accept one order and update HEAD. You accept another order in parallel and follow to merge. "Merge" here means that you need to return money to the customer and send out an apology e-mail. More cumbersome than locking, isn't it? But possible, yes. |
|
Your example is much better. I also was thinking of maintaining an account balance with a log (vs. synchronising updates to a stored amount), but it's not much different from your example.
And of course this "eventually consist" strategy is generally how things happen "at scale", persistent data structures or not.