diff --git a/openslides/utils/settings.py.tpl b/openslides/utils/settings.py.tpl index 1d5bd8512..49ac1f795 100644 --- a/openslides/utils/settings.py.tpl +++ b/openslides/utils/settings.py.tpl @@ -80,6 +80,7 @@ if use_redis: # https://channels.readthedocs.io/en/latest/backends.html#redis CHANNEL_LAYERS['default']['BACKEND'] = 'asgi_redis.RedisChannelLayer' + CHANNEL_LAYERS['default']['CONFIG']['prefix'] = 'asgi:' # Caching @@ -94,7 +95,8 @@ if use_redis: "LOCATION": "redis://127.0.0.1:6379/0", "OPTIONS": { "CLIENT_CLASS": "django_redis.client.DefaultClient", - } + }, + "KEY_PREFIX": "openslides-cache" } }