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]605a515ebcCloses-Bug: 2091678 Change-Id: I02afc8644ef801f2afba6ac03ac7fd0a8b109e77
This commit is contained in:
@@ -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',
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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',
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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',
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user