advancedReal System Design Problems
Design a Distributed Cache (like Redis Cluster) — consistent hashing and hot-key handling.
The consistent-hashing-and-replication problem: how data is distributed across cache nodes using consistent hashing, how virtual nodes improve distribution evenness, what happens when a node fails, and how the cache handles a hot key that receives wildly disproportionate traffic compared to every other key.
This is a Pro question
Sign in, then upgrade to Pro or Power to unlock this question and the full Interview Prep bank.
Design a Distributed Cache (like Redis Cluster) — consistent hashing and hot-key handling.