summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@tummy.com>2013-05-04 22:53:19 -0600
committerSean Reifschneider <jafo@tummy.com>2013-05-04 22:53:19 -0600
commit07498a0243d34562709f4b3760463dbd23db2ede (patch)
tree51b41e1ab80b212d0f056f525bfe17dedbad568b /ChangeLog
parent1b3f0c0f35456dfd997e0a6c96150f52efbdff01 (diff)
downloadpython-memcached-07498a0243d34562709f4b3760463dbd23db2ede.tar.gz
check_key disabling and performance improvements.
* Client() now takes a "check_key" option, which defaults to True. If False, it disables the checking of keys to ensure they have acceptable size and are composed of non-control characters. Suggested by Ben Hoyt. * Converting control character checking of keys based on performance testing of alternatives by Ben Hoyt.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 059b389..3715b82 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+ * Client() now takes a "check_key" option, which defaults to True.
+ If False, it disables the checking of keys to ensure they have
+ acceptable size and are composed of non-control characters.
+ Suggested by Ben Hoyt.
+
+ * Converting control character checking of keys based on performance
+ testing of alternatives by Ben Hoyt.
+
* Converted unicode tests from using u'', patch from Eren Güve.
* Included license file (pull request by "Philippe" pombredanne).