|
|
|
|
|
by advisedwang
22 days ago
|
|
This sounds like a very direct approach to linearizability - just put everything in a linear order. But this includes READ operations too! You have to get global consensus for every read! Most distributed systems have additional complexity and latency on write paths so that reads can be completely local. If you can accept slow read operations this seems like a great trade off, but I think that is going to relegate this to niece usage. |
|