Anas
Anas
it is using pipeline so it sends one command to the server. Have a look [here](https://redis.io/docs/manual/pipelining/). Do you think it is slow? Probably using `MSET` is faster but it complicated...
`get_many` (source [here](https://github.com/jazzband/django-redis/blob/040d85e2e2e723f456bc05e66de963a60ea30f3e/django_redis/client/default.py#L485)) uses `MGET` command which has a complexity of `O(1)` from django-redis perspective and a complexity of `O(N)`, the complexity is all on redis side so if you...
Hello @alexandernst! It can be definitely done with a pub/sub mechanism but, I agree with @niwnz, I think it is not the scope of the project. You could try to...
`django-redis` is a plugin cache for `django`, there are other tools for this, you can use `celery` or `rq`. I would be not looking forward for something like this in...
now it's even more diverged than before, because we support sentinel and more commands for different data structures such as hashmaps and sets. Future developments are going to add more...
Hello @ZuSe! Maybe the new feature added by @terencehonles supporting sentinel is what you are looking for?
@ZuSe has your question been answered or you are looking for something else? Just asking so that we could close this issue.
Hey @ZuSe, you can get `ConnectionPool` already like it is shown in the `README` [here](https://github.com/jazzband/django-redis#testing-with-django-redis)
I would love to have tests to connect to a server with credentials
@julen would you be interested in clearing out the doubt on the docs, maybe with a PR? Maybe in a `FAQ` section