System Design Interview Concepts – Load Balancing
What is Load Balancing?
Load balancing is one of the founding pillars of designing distributed systems. A load balancer simply distributes a set of requested operations (database write requests, cache queries) effectively across a set of servers.
Here’s an example …
Read More