CAP Theorem

About

The CAP Theorem says that you cannot have a system that is partitioned (redundant), consistent (have consistency between partitions) and availability.

  • AC: Without partitioning, the data are consistent and available.

  • AP: With partitioning, if you opt by availability, you lose consistency.

  • CP: With partitioning, if you opt by consistency, you lose availability.

Last updated