diff options
| author | Tim Graham <timograham@gmail.com> | 2014-07-23 15:23:36 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-07-23 15:26:42 -0400 |
| commit | 663af270b58f350bcbd9df5cd04ffe69e8ac37c8 (patch) | |
| tree | 1a96c63ca9e81e4862190b37ebbd45f1aadfc3e2 /docs | |
| parent | 9638daec5cb584dc3b62b7373e0f7cd2fc808b7e (diff) | |
[1.7.x] Added backwards incompatibility note for refs #22845; refs #23082.
Thanks Kyle Owens for the report.
Backport of 8568e7cfa4 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.7.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt index 1cac7edb56..105388fdb7 100644 --- a/docs/releases/1.7.txt +++ b/docs/releases/1.7.txt @@ -1405,6 +1405,16 @@ Miscellaneous method that is registered with the check framework. If you have an existing method called ``check()`` on one of these objects, you will need to rename it. +* As noted above in the "Cache" section of "Minor Features", defining the + :setting:`TIMEOUT <CACHES-TIMEOUT>` argument of the + :setting:`CACHES` setting as ``None`` will set the cache keys as + "non-expiring". Previously, with the memcache backend, a + :setting:`TIMEOUT <CACHES-TIMEOUT>` of ``0`` would set non-expiring keys, + but this was inconsistent with the set-and-expire (i.e. no caching) behavior + of ``set("key", "value", timeout=0)``. If you want non-expiring keys, + please update your settings to use ``None`` instead of ``0`` as the latter + now designates set-and-expire in the settings as well. + .. _deprecated-features-1.7: Features deprecated in 1.7 |
