From b8a152f5fea01b770e36f9ace6f2111a5cf44473 Mon Sep 17 00:00:00 2001 From: Ivan Anfimov Date: Tue, 14 Jan 2025 19:02:31 +0000 Subject: [PATCH] doc: Switch to PyMemcacheCache backend - Manual installation Change-Id: I91a84498450c5eebd16b002ea964722408394ac4 Closes-Bug: 2091678 --- doc/source/install/from-source.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/install/from-source.rst b/doc/source/install/from-source.rst index 7e17663170..95dfbd69ef 100644 --- a/doc/source/install/from-source.rst +++ b/doc/source/install/from-source.rst @@ -115,7 +115,7 @@ Memcached SESSION_ENGINE = 'django.contrib.sessions.backends.cache' CACHES = { 'default': { - 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', + 'BACKEND': 'django.core.cache.backends.memcached.PyMemcacheCache', 'LOCATION': 'controller:11211', } }