linearizable
Linearizable is an adjective used to describe a concurrent object whose behavior satisfies the linearizability correctness condition. Linearizability requires that every operation on the object appears to take effect instantaneous at some point between its invocation and its response, and that the order of non-overlapping operations respects real time. In practice this means the system behaves as if there is a single, global order of operations that is consistent with the observed results.
Formally, an execution history is linearizable if there exists a sequential history of all operations that
Linearizability implies sequential consistency; every linearizable history is sequentially consistent, but not every sequentially consistent history
In practice, linearizability is achieved by identifying a linearization point for each operation and by designing
The concept was introduced by Herlihy and Wing in 1990 as a formal correctness condition for concurrent