channels_redis
channels_redis copied to clipboard
Redis channel layer backend for Django Channels
I'm not sure if it's a bug or me being stupid (as I'm not a python developer), so sorry in advance :) I'm trying to setup channels-redis (4.0.0b2, the one...
Hello, I am trying to use AWS Elasticache Redis cluster as backend with channels_redis for connecting to websocket. However, I am unable to configure that as container get restarted every...
The main reason for submitting this PR is to give users the ability to subclass RedisChannelLayer and do sth like: ``` def default(value): if isinstance(value, enum.Enum): return value.value return value...
Works on "design your own cache" redis clusters but not serverless (engine version 7.1 for both). Running daphne in docker on aws ec2. Traceback: ``` [1] [ERROR] Exception inside application:...
In my project, I want a message to be sent to a group when a client connects or disconnects. The "listener" of that group is a different consumer. To detect...
I am using channels_redis as backend to GraphQL subscriptions. Upon subscription I subscribe a user to a number of groups, which works as expected. But if in the meantime I...
requires this django PR https://github.com/django/channels/pull/1948 addresses memory leak issue https://github.com/django/channels_redis/issues/276
Config ``` CHANNEL_LAYERS = { 'default': { 'BACKEND': 'channels_redis.pubsub.RedisPubSubChannelLayer', 'CONFIG': { "hosts": [('127.0.0.1', 6379)], }, }, } ``` Error: ``` File "[..]lib/python3.10/site-packages/channels/routing.py", line 71, in __call__ return await application(scope, receive,...
Azure cache for redis supports authentication using microsoft entra tokens, it would be great if I could make use of that with django + channels https://learn.microsoft.com/en-us/azure/azure-cache-for-redis/cache-azure-active-directory-for-authentication#microsoft-entra-client-workflow describes what the client...
Issues are for **concrete, actionable bugs and feature requests** only - if you're just asking for debugging help or technical support we have to direct you elsewhere. If you just...