summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@guin.tummy.com>2009-11-27 21:03:04 -0700
committerSean Reifschneider <jafo@guin.tummy.com>2009-11-27 21:03:04 -0700
commitc1f57dc0d6776179be4c67d4a50f56eee80e6408 (patch)
tree9786f402d7ef5e128ff46a2400346cd39555c303 /ChangeLog
parentc5203158e61f01ad6b86520d52d0c99756343e37 (diff)
downloadpython-memcached-c1f57dc0d6776179be4c67d4a50f56eee80e6408.tar.gz
* Patches to make memcached more garbage-collectable. Removes
"debugfunc" argument from _Host objects and changed to "debug" boolean. Patch by John McFarlane.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 51dec66..ba9acf0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+ * Patches to make memcached more garbage-collectable. Removes
+ "debugfunc" argument from _Host objects and changed to "debug"
+ boolean. Patch by John McFarlane.
+
+ * Switching to a cmemcache compatible hash function. Implemented by
+ André Cru and Ludvig Ericson. To switch back to the old style, use:
+
+ memcached.useOldServerHashFunction()
+
* Rejecting keys that have spaces in them. Patch by Etienne Posthumus.
* Fixing exception raising syntax. Patch by Samuel Stauffer.
@@ -11,9 +20,6 @@
* incr/decr were raising ValueError if the key did not exist, the
docstring said it returned none. Patch by Chihiro Sakatoku.
- * Included cmemcache_hash, by permission of Ludvig Ericson.
- To use, do "memcached.cmemcache_activate()".
-
* Adding cas method, submitted by Ben Gutierrez.
* Fix in the docstring for how to use the "set" method. Found and fixed