summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@tummy.com>2011-11-27 17:36:53 -0700
committerSean Reifschneider <jafo@tummy.com>2011-11-27 17:36:53 -0700
commit993ccd84df670f99ff25bdc2cd9bdd623dee24d6 (patch)
treed5d716f38ae59ac6ee1973ccd1363ff92d69daba /ChangeLog
parentcaa0279fef7e9622813203f3b187ac20e1c40bb9 (diff)
downloadpython-memcached-993ccd84df670f99ff25bdc2cd9bdd623dee24d6.tar.gz
Bug: #741090: cas cache can grow unbounded. Default now is that the
cache is not used, unless the "Client()" object is created with "cache_cas=True". In that case, you need to have your own cas clearing code, a simple one would be to use Client().reset_cas() to completely clear the cas_ids cache. Problem pointed out by Shaun Cutts.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e3f89f3..4387de6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+ * Bug: #741090: cas cache can grow unbounded. Default now is that the
+ cache is not used, unless the "Client()" object is created with
+ "cache_cas=True". In that case, you need to have your own cas clearing
+ code, a simple one would be to use Client().reset_cas() to completely
+ clear the cas_ids cache. Problem pointed out by Shaun Cutts.
+
* Bug: #794456: Spaces in memcache keynames
Now allow spaces in keys. Proposed by cpaetzel.