Hacker News new | ask | show | jobs
by teraflop 1517 days ago
Aside from being a lot simpler to use, a dedicated "multiply" command could end up being dramatically more efficient.

If multiple clients are simultaneously trying to update the same value, then locking allows them to take turns with relatively little overhead. With compare-and-set, all but one of the clients would fail at the "compare" step and need to retry, requiring additional network round-trips.