From 6c16eaf64a804b754e60d4670c415ce053c67ff6 Mon Sep 17 00:00:00 2001
From: userstartupideas <64709217+userstartupideas@users.noreply.github.com>
Date: Tue, 26 May 2020 02:59:01 +0100
Subject: [PATCH] Update "Scaling up to your first 10 million users" link
(#411)
---
README.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index 293b8ac570a..f9563097aad 100644
--- a/README.md
+++ b/README.md
@@ -806,7 +806,7 @@ Systems such as [Consul](https://www.consul.io/docs/index.html), [Etcd](https://
- Source: Scaling up to your first 10 million users
+ Source: Scaling up to your first 10 million users
### Relational database management system (RDBMS)
@@ -872,7 +872,7 @@ Both masters serve reads and writes and coordinate with each other on writes. I
- Source: Scaling up to your first 10 million users
+ Source: Scaling up to your first 10 million users
Federation (or functional partitioning) splits up databases by function. For example, instead of a single, monolithic database, you could have three databases: **forums**, **users**, and **products**, resulting in less read and write traffic to each database and therefore less replication lag. Smaller databases result in more data that can fit in memory, which in turn results in more cache hits due to improved cache locality. With no single central master serializing writes you can write in parallel, increasing throughput.
@@ -886,7 +886,7 @@ Federation (or functional partitioning) splits up databases by function. For ex
##### Source(s) and further reading: federation
-* [Scaling up to your first 10 million users](https://www.youtube.com/watch?v=w95murBkYmU)
+* [Scaling up to your first 10 million users](https://www.youtube.com/watch?v=kKjm4ehYiMs)
#### Sharding
@@ -1122,7 +1122,7 @@ Sample data well-suited for NoSQL:
##### Source(s) and further reading: SQL or NoSQL
-* [Scaling up to your first 10 million users](https://www.youtube.com/watch?v=w95murBkYmU)
+* [Scaling up to your first 10 million users](https://www.youtube.com/watch?v=kKjm4ehYiMs)
* [SQL vs NoSQL differences](https://www.sitepoint.com/sql-vs-nosql-differences/)
## Cache