From c61afb15bc20a5d682ecfc727c296f85ecef219c Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Wed, 18 Jan 2023 02:35:24 +0400 Subject: [PATCH] Add content in consistency patterns --- .../content/104-consistency-patterns/index.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/roadmaps/system-design/content/104-consistency-patterns/index.md b/src/roadmaps/system-design/content/104-consistency-patterns/index.md index c7f329ff5..bf146a0d0 100644 --- a/src/roadmaps/system-design/content/104-consistency-patterns/index.md +++ b/src/roadmaps/system-design/content/104-consistency-patterns/index.md @@ -1 +1,13 @@ -# Consistency patterns \ No newline at end of file +# Consistency Patterns + +Consistency patterns refer to the ways in which data is stored and managed in a distributed system, and how that data is made available to users and applications. There are three main types of consistency patterns: + +- Strong consistency +- Weak consistency +- Eventual Consistency + +Each of these patterns has its own advantages and disadvantages, and the choice of which pattern to use will depend on the specific requirements of the application or system. + +Have a look at the following resources to learn more: + +- [Consistency Patterns in Distributed Systems](https://cs.fyi/guide/consistency-patterns-week-strong-eventual/)