Consistent Hashing
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="proxy.php?url=https%3A%2F%2Fstatuscodefyi.com%2Fiframe%2Fglossary%2Fconsistent-hashing%2F" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://statuscodefyi.com/glossary/consistent-hashing/
Add a dynamic SVG badge to your README or docs.
[](https://statuscodefyi.com/glossary/consistent-hashing/)
Use the native HTML custom element.
A hashing strategy that maps both keys and servers onto a circular hash ring, so that adding or removing a server causes only a small fraction of keys to be remapped rather than redistributing all keys. In load balancing, consistent hashing can route requests with the same client IP or request attribute to the same backend without sticky session cookies. It is also foundational in distributed caches (Memcached, Redis Cluster), key-value stores, and CDN origin selection. Virtual nodes (vnodes) per server improve key distribution uniformity and handle heterogeneous server capacities.