Weak consistency
The name weak consistency can be used in two senses. In the first sense, strict and more popular, weak consistency is one of the consistency models used in the domain of concurrent programming.
A protocol is said to support weak consistency if:
- All accesses to synchronization variables are seen by all processes in the same order - these are synchronization operations. Accesses to critical sections are seen sequentially.
- All other accesses may be seen in different order on different processes.
- The set of both read and write operations in between different synchronization operations is the same in each process.
In the second, more general, sense weak consistency may be applied to any consistency model weaker than sequential consistency.
A stricter condition is strong consistency, where parallel processes can observe only one consistent state.