mirror of
https://git.freebsd.org/ports.git
synced 2025-07-05 11:29:15 -04:00
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. WWW: http://pypi.python.org/pypi/hash_ring PR: 129890 Submitted by: Yi-Jheng Lin <yzlin at cs dot nctu dot edu dot tw>
11 lines
245 B
Python
11 lines
245 B
Python
--- setup.py.orig 2008-12-24 05:04:05.000000000 +0800
|
|
+++ setup.py 2008-12-24 05:04:21.000000000 +0800
|
|
@@ -6,8 +6,6 @@
|
|
# your option) any later version.
|
|
|
|
import os
|
|
-import ez_setup
|
|
-ez_setup.use_setuptools()
|
|
|
|
from setuptools import setup
|
|
|