Jump to content

Strong consistency

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Mecanismo (talk | contribs) at 19:24, 2 October 2019 (add "See Also" section). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Strong consistency is one of the consistency models used in the domain of the concurrent programming (e.g., in distributed shared memory, distributed transactions).

The protocol is said to support strong consistency if:

  1. All accesses are seen by all parallel processes (or nodes, processors, etc.) in the same order (sequentially)

Therefore, only one consistent state can be observed, as opposed to weak consistency, where different parallel processes (or nodes, etc.) can perceive variables in different states.

See also