skip to Main Content

Django channels without redis

I have a django app based on this tutorial that works perfectly. It uses Redis in the Channel layers CHANNEL_LAYERS = { 'default': { 'BACKEND': 'channels_redis.core.RedisChannelLayer', 'CONFIG': { "hosts": [('127.0.0.1', 6379)], }, }, } The problem I have is that…

VIEW QUESTION
Back To Top
Search