Samuel Colvin

Results 1078 comments of Samuel Colvin

i agree aioredis 2 has some problems, as well as the issues with `__del__` there's a lot of problems with minimal docs and with encoding strings. Therefore, support for aioredis...

well, we need to sometimes `get()` pickle data which is binary, and sometimes get strings. So as pointed out on #259, we have to omit `decode_responses` then do a lot...

### Update on migrating to new redis connection Good news! After two days of banging my head against the wall, I've at last got #259 to pass and merged it....

> Do you want to release a pre-release for easier installs for us? I'll port over all our projects tomorrow and see how it behaves. Will do. > I think...

I've decided against renaming `create_pool` since the new `ArqRedis` / `Redis` class behaves a bit like a pool and renaming the function would break a lot of code. I've released...

Is the username issue something we can fix in arq?

Great, I'll include that in v0.23

It's pretty simple to implement now with `partial`. If that's really not satisfactory, and you wanted to add it as an explicit feature, pr welcome.

okay, you'll need your own `partial` method, something like ```py from functools import wraps def partial(f, *args, **kwargs): @wraps(f) def partial_function(ctx): return f(*args, **kwargs) return partial_function ``` I agree though...