midCAP Theorem
Explain Eventual Consistency.
Updated Apr 28, 2026
Short answer
A consistency model where if no new updates are made, all reads will eventually return the last updated value.
Deep explanation
Intermediate CAP analysis focuses on real-world database choices and consistency models. A consistency model where if no new updates are made, all reads will eventually return the last updated value.
Real-world example
Amazon DynamoDB using eventual consistency to ensure high availability for the 'Add to Cart' feature.
Common mistakes
- Assuming a CP system is always consistent
- it is only consistent as long as the majority (quorum) is alive.
Follow-up questions
- What is the L in PACELC?