# Weak consistency

Last edited: 2025-04-13

Weak consistency

Weak consistency is a consistency model that introduces a new operation: synchronise. The model only guarantees that all operations performed before a synchronisation point will be visible to processes that call synchronise afterwards. There are variations of this:

  • Single sync (like above).
  • Separate sync per subset of state (e.g. page)
  • Separate entry/acquire vs exit/release operations.