summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnest W. Durbin III <ewdurbin@gmail.com>2016-12-08 17:04:14 -0500
committerErnest W. Durbin III <ewdurbin@gmail.com>2016-12-08 17:04:14 -0500
commitadad0594148c6b44a52877228980e3b1c86399f0 (patch)
tree29ea91101f07e658afea42d65fb479127c06c25b
parente7b99addd64dc9c2fbbd39416bcc6337ff8395b8 (diff)
downloadpymemcache-adad0594148c6b44a52877228980e3b1c86399f0.tar.gz
remove suggestion to use python-clandestined
this note is misleading, as the hasher is expected to expose a get_node method. clandestined's RendezvousHash does not implement this method. when clandestined's implementation was copied into pymemcached in commit cff5abfad59baa593996fe7e240fd3944e2c4af2, the method was renamed from find_node, breaking compatibility.
-rw-r--r--pymemcache/client/hash.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/pymemcache/client/hash.py b/pymemcache/client/hash.py
index 946608d..1845bff 100644
--- a/pymemcache/client/hash.py
+++ b/pymemcache/client/hash.py
@@ -54,11 +54,6 @@ class HashClient(object):
Further arguments are interpreted as for :py:class:`.Client`
constructor.
-
- The default ``hasher`` is using a pure python implementation that can
- be significantly improved performance wise by switching to a C based
- version. We recommend using ``python-clandestined`` if having a C
- dependency is acceptable.
"""
self.clients = {}
self.retry_attempts = retry_attempts