Eli Bendersky's
Follow
Consistent hashing
This post is an introduction to consistent hashing,
an algorithm for designing a hash table such that only a small portion of
keys has to be recomputed when the table's size changes.Motivating use caseSuppose we're designing a caching web proxy,
but the expected storage demands are higher than …