← Back to context

Comment by gpderetta

3 months ago

This is equivalent of using a single global lock (and STM is semantically equivalent, just theoretically more scalable). It obviously works, but greatly limits scalability by serializing all operations.

Also in practice the CSP node that is providing access control is effectively implementing shared memory (in an extremely inefficient way).

The fundamental problem is not shared memory, it is concurrent access control.

There's no silver bullet.