Problem Statement
How do you mitigate hot-key overload on a distributed cache?
Explanation
Per-node in-process caches and selective replication spread read load. You can also use request coalescing and small response compression to lower network pressure.
Code Solution
SolutionRead Only
Local LRU -> Distributed cache -> DB
