diff options
| author | Tim Graham <timograham@gmail.com> | 2017-09-02 19:59:45 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-09-22 12:51:17 -0400 |
| commit | e47b56d791eb6c81c6d83529b7a068959ea1c1ec (patch) | |
| tree | 9e3dfc877277ecf34351d415e79fa9269e8f26b2 /docs | |
| parent | 87d2240e6cc594a3bf28dfdb2ec023c54fb76ff7 (diff) | |
Refs #20892 -- Removed support for passing pylibmc behavior settings as top-level attributes of CACHES['OPTIONS'].
Per deprecation timeline.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/2.1.txt | 3 | ||||
| -rw-r--r-- | docs/topics/cache.txt | 8 |
2 files changed, 3 insertions, 8 deletions
diff --git a/docs/releases/2.1.txt b/docs/releases/2.1.txt index 7f1330b756..1fd22da588 100644 --- a/docs/releases/2.1.txt +++ b/docs/releases/2.1.txt @@ -236,3 +236,6 @@ how to remove usage of these features. * ``django.test.runner.setup_databases()`` is removed. * ``django.utils.translation.string_concat()`` is removed. + +* ``django.core.cache.backends.memcached.PyLibMCCache`` no longer supports + passing ``pylibmc`` behavior settings as top-level attributes of ``OPTIONS``. diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt index 6e6564d3e2..16e9a63580 100644 --- a/docs/topics/cache.txt +++ b/docs/topics/cache.txt @@ -479,14 +479,6 @@ the binary protocol, SASL authentication, and the ``ketama`` behavior mode:: } } -.. versionchanged:: 1.11 - - Memcached backends can now be configured using ``OPTIONS``. - - In older versions, you could pass ``pylibmc`` behavior settings directly - inside ``OPTIONS``. This is deprecated in favor of setting them under a - ``behaviors`` key within ``OPTIONS`` instead. - .. _the-per-site-cache: The per-site cache |
