channels_redis
channels_redis copied to clipboard
Redis channel layer backend for Django Channels
It appears that if you write a message to a channel, for example via `group_send`, and no reader ever appears on that channel, the messages will remain in the in-memory...
I followed the tutorial and it was great, but I had the error below ```TypeError: RedisChannelLayer.__init__() got an unexpected keyword argument 'ssl_cert_reqs'```. because the CHANNELS_LAYER CONFIG was like this ```"BACKEND":...
## Stack - Redis instance hosted on azure (aka Azure Cache for Redis) ``` redis = "^5.0.0" django-redis = "^5.2.0" channels-redis = "^4.2.0" channels = { extras = ["daphne"], version...
Hi, I encountered an issue while working with Django Channels. I was required to use the same Redis configuration throughout the Django project. The Django cache framework allows for a...
hi sorry to bother, I'm rather unaware of how licenses work I've forked this package and made `channels_valkey`. is it ok if i keep watch of this repo and mirror...
This is a draft implementation for #399 It adds support for sending multiple messages to the core layer only. It probably does not make much sense to add that to...
# Feature request Sometimes there is a need to send multiple messages to a channel (or group) at once. While this can be done using a group of `asyncio` tasks,...
When trying to deploy Django Channels for the first time in production, I got the Redis `NoPermissionError` exception when using the `group_send()` function. Example code that would produce the error:...
I'm encountering an issue when using Redis with Django Channels, where the connection crashes. Below are the details of my setup and an example of the code that's causing the...