Image from [Chetna Chaudhari](https://chetnachaudhari.medium.com/cap-principle-5adbef7f2dc3)

The CAP Theorem and Blockchain Systems

CAP Theorem and its use with different types of distributed systems such as blockchain systems

December 9, 2023 · 4 min · Antonio Pancorbo
[Brewer's Conjunction and the Feasibility of Consistent, Available, Partition-Tolerant Web Services](https://dl.acm.org/doi/10.1145/564585.564601)

Brewer's Conjunction and the Feasibility of Consistent, Available, Partition-Tolerant Web Services

When designing distributed web services, there are three properties that are commonly desired: consistency, availability, and partition tolerance. It is impossible to achieve all three. In this note, we prove this conjecture in the asynchronous network model, and then discuss solutions to this dilemma in the partially synchronous model.

Seth Gilbert, Nancy Lynch
[CAP Twelve Years Later: How the “Rules” Have Changed](https://ieeexplore.ieee.org/document/6133253)

CAP Twelve Years Later: How the “Rules” Have Changed

In the decade since its introduction, designers and researchers have used (and sometimes abused) the CAP theorem as a reason to explore a wide variety of novel distributed systems. The NoSQL movement also has applied it as an argument against traditional databases. The CAP theorem states that any networked shared-data system can have at most two of three desirable properties: consistency (C) equivalent to having a single up-to-date copy of the data; high availability (A) of that data (for updates); and tolerance to network partitions (P)....

Eric Brewer
Designing Data-Intensive Applications

Designing Data-Intensive Applications

Data is at the center of many challenges in system design today. Difficult issues need to be figured out, such as scalability, consistency, reliability, efficiency, and maintainability. In addition, we have an overwhelming variety of tools, including relational databases, NoSQL datastores, stream or batch processors, and message brokers. What are the right choices for your application? How do you make sense of all these buzzwords? In this practical and comprehensive guide, author Martin Kleppmann helps you navigate this diverse landscape by examining the pros and cons of various technologies for processing and storing data....

Martin Kleppmann