Devid
Devid
I had run a test logging times inside `send_group` function in 3 different points: - after connection (line 614) - after map-channels-to-connection (line ~628) - at the end I have...
I have to apologize for my previous statement. Seems that what takes about `0.000210` seconds (with a single client connected) is this part: https://github.com/django/channels_redis/blob/0c27648b60a1918c867b96a5ad3f67ef58ccceda/channels_redis/core.py#L614-L622 I have also performed an other...
I have done some other tests with a growing number of client connecting to these test consumers (from 1, 6, 11, 16, 21, 26 and 31) having these results: . Using 32 clients (which were processes on an other host) I got the following...
Any ETA for this?
@hishnash I will give a look at your code and maybe try it out. However I think that this feature should get more support cause it is "essential" to fully...
The root cause of this is `aioredis`, since it parses redis URL to extract config options. When encoding is passed it is used to automatically decode any redis output _before_...
@carltongibson I think thank `aredis` can help, from its code it does not parse `encoding` from redis URL https://github.com/NoneGG/aredis/blob/b46e67163692cd0796763e5c9e17394821d9280c/aredis/pool.py#L33-L37 Also `Connection` classes there uses an explicit `decode_responses` parameter (along with...
Also compose 3.4 introduces [extension-fields](https://docs.docker.com/compose/compose-file/#extension-fields).