From 489d6ee4f3d298c02b588fe84f9b6672cf75fd25 Mon Sep 17 00:00:00 2001 From: J-Atulya Date: Sat, 12 Apr 2025 23:44:52 +0530 Subject: [PATCH] Added contents for scalability --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 574aa6ff..c996bd1b 100644 --- a/README.md +++ b/README.md @@ -465,7 +465,7 @@ First, you'll need a basic understanding of common principles, learning about wh - **Replication lag** : When you copy data from the main database to replicas, there's a small delay. The replicas might not have the very latest updates right away. - **Consistency issues in write-heavy apps** : If your app writes a lot of data (e.g., saving user actions), the replicas may fall behind, and different servers might show different versions of the data for a short time. -## Database Partitioning [Sharding](https://learn.microsoft.com/en-us/azure/architecture/patterns/sharding) +## Database Partitioning - [Sharding](https://learn.microsoft.com/en-us/azure/architecture/patterns/sharding) **Sharding** splits a large database into smaller parts, called shards, each stored on separate machines.