doc: Switch to PyMemcacheCache backend

MemcachedCache backend was already removed in django 4.1[1] but horizon
requires django>=4.2 now[2]. So the backend can no longer be used.

[1] 05f3a6186e
[2] 605a515ebc

Closes-Bug: 2091678
Change-Id: I02afc8644ef801f2afba6ac03ac7fd0a8b109e77
This commit is contained in:
Takashi Kajinami
2024-12-13 12:18:41 +09:00
parent 2ec0177edc
commit 8ccaf47a7f
3 changed files with 3 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ Install and configure components
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'BACKEND': 'django.core.cache.backends.memcached.PyMemcacheCache',
'LOCATION': 'controller:11211',
}
}

View File

@@ -76,7 +76,7 @@ Install and configure components
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'BACKEND': 'django.core.cache.backends.memcached.PyMemcacheCache',
'LOCATION': 'controller:11211',
}
}

View File

@@ -73,7 +73,7 @@ Install and configure components
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'BACKEND': 'django.core.cache.backends.memcached.PyMemcacheCache',
'LOCATION': 'controller:11211',
}
}