Alexander Schepanovski
Alexander Schepanovski
Nobody is interested enough to finish this.
How do you know it is not working?
There could be many reasons: 1. Fail to connect to redis, see logs, there might be warnings. Because of `CACHEOPS_DEGRADE_ON_FAILURE = True` you still continue. 2. Queries are not the...
Doesn't look related to cacheops
So `.exclude()` fails to invalidate? Can you create a test for this? There is an instruction in the end of README.
There are two different ways to use multiple redises. First is when there are separate caches on different servers (this is handy when you have geographically distributed application servers), second...
Sharding won't work with redis cluster cause we need to store our keys with their invalidators on single instance and cluster stores keys as it wants. And you most probably...
Given production-ready redis cluster and not using transactions but scripting now, this is relatively easy to implement. I don't need this functionality, but if anyone is willing to make a...
@botondus, @ttyS15 are you still interested?
@anac0nda you need to decide how you shard. Cacheops has keys depending on each other so you can't just distribute them by generic hash key as redis cluster does. See...