Consistent Hashing
Learn the consistent hashing algorithm.
Consistent hashing is a popular algorithm and databases such as DynamoDB, Cassandra, ScyllaDB, and Riak use this algorithm to scale systems. In this lesson, we will explain the algorithm.
What is consistent hashing?
Consistent hashing is a hashing algorithm in which only keys are remapped if the number of nodes changes. Here ...