channels_redis icon indicating copy to clipboard operation
channels_redis copied to clipboard

Redis channel layer backend for Django Channels

Results 70 channels_redis issues
Sort by recently updated
recently updated
newest added

channels==3.0.4 channels-redis==3.4.0 redis==6.2.6 running inside a docker container Settings: ``` CHANNEL_LAYERS = { "default": { "BACKEND": "channels_redis.core.RedisChannelLayer", "CONFIG": {"hosts": [("localhost", 5673)]}, }, } ``` As soon as I try to...

[aioredis #803](https://github.com/aio-libs/aioredis/issues/803) and today I use Redis monitor command, found that so much to execute `ZREMRANGEBYSCORE` and `ZRANGE`

While attempting to fix #270, I realized that the PubSub layer doesn't actually conform to the [Channels Layer Spec](https://channels.readthedocs.io/en/stable/channel_layer_spec.html). In particular, the spec says: > Channels are a first-in, first...

Connecting to redis is no longer done by calling await aioredis.create_pool(...). [link](https://aioredis.readthedocs.io/en/latest/migration/)

`aioredis` has already released an alpha and beta version, but it is `2.0.0` so it clashes with the `install_requirements` [here](https://github.com/django/channels_redis/blob/9793d099beff719884854dcdd25709aee745ce97/setup.py#L34) which requires `aioredis~=1.0`. Is it possible to have a new...

channels_redis uses `.eval()` in a number of locations. On certain redis server installations `EVAL` has been renamed for security reasons. [Pivotal's Shared Redis Release](https://github.com/pivotal-cf/shared-redis-release/) is an example of a pre-packaged...

## Feature Request **Is your feature request related to a problem or unsupported use case? Please describe.** `msgpack` is able to serialize data and is not able to deserisliaze the...

It seems that upon any `websocket_disconnect` call in a Consumer Class which inherits from `AsyncConsumer` we get the following error. ``` Application instance for connection took too long to shut...

The connections drop constantly with this error. totally random(on send or receive event) . even in a test minimal project. redis=6.0.5 channels-redis=3.0.1 Python=3.8.2 The error is somewhat similar to #214...

Hi, I posted about my adventure trying to configure SSL for Redis in the suggested Google Groups page which has all the requested information prepopulated in the body of this...

enhancement
documentation