# hash_ring **Repository Path**: mirrors_DataDog/hash_ring ## Basic Information - **Project Name**: hash_ring - **Description**: Implements consistent hashing in Python (using md5 as hashing function) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README cronwrap =========================================== Implements consistent hashing that can be used when the number of server nodes can increase or decrease (like in memcached). The hashing ring is built using the same algorithm as libketama. Consistent hashing is a scheme that provides a hash table functionality in a way that the adding or removing of one slot does not significantly change the mapping of keys to slots. More about hash_ring can be read in a blog post (that explains the idea in greater details): * Consistent hashing implemented simply in python More information about consistent hashing can be read in these articles: * Web Caching with Consistent Hashing * Consistent hashing and random trees There is also a wrapper MemcacheRing that extends python-memcache to use consistent hashing for key distribution. Installing =========== To install cronwrap simply do:: $ sudo easy_install hash_ring Example =========== Basic example of usage (for managing memcached instances):: memcache_servers = ['192.168.0.246:11212', '192.168.0.247:11212', '192.168.0.249:11212'] ring = HashRing(memcache_servers) server = ring.get_node('my_key') Example using weights:: memcache_servers = ['192.168.0.246:11212', '192.168.0.247:11212', '192.168.0.249:11212'] weights = { '192.168.0.246:11212': 1, '192.168.0.247:11212': 2, '192.168.0.249:11212': 1 } ring = HashRing(memcache_servers, weights) server = ring.get_node('my_key') How to use MemcacheRing:: from hash_ring import MemcacheRing mc = MemcacheRing(['127.0.0.1:11212']) mc.set('hello', 'world') print mc.get('hello') The code should be clean and simple. Feel free to concat the author if you detect bugs.