|
|
|
|
|
by asya999
2033 days ago
|
|
There are systems that accept writes in multiple places (to the same object). So you could read writes applied in different order on different nodes, though in theory eventually all the nodes will converge on the same object value. This is akin to dirty writes, a consistency level no actual database allows. That’s the distinction between stale and ... eventually consistent. TL;DR stale and consistent is better than inconsistent. |
|