Memory quorum is a fault-tolerant consensus mechanism that defines the minimum number of nodes in a distributed memory system that must acknowledge a read or write operation for it to be considered valid and durable. This protocol ensures strong consistency and linearizability by preventing split-brain scenarios where network partitions could lead to conflicting data states. It is a core component of distributed memory fabrics and shared memory architectures for multi-agent systems, directly trading off between availability and consistency as defined by the CAP theorem.
