django-redis-cache
django-redis-cache copied to clipboard
A Redis cache backend for django
When supplying an option for `MASTER_CACHE` [as shown here](https://django-redis-cache.readthedocs.io/en/latest/advanced_configuration.html#master-slave-setup), if you do not supply a port (only the hostname), the Redis host is mistakingly interpreted as a unix socket rather...
**Issue:** I've just discovered (the bad way) that `get_or_set` function is not multiprocess safe. There seems to be a race condition [here](https://github.com/sebleier/django-redis-cache/blob/master/redis_cache/backends/base.py#L415) **How to reproduce:** Scenario to reproduce (obviously this...
Currently version 1.8.0 / 1.8.1 is on pypi, etc, but not on github as a release.
About an hour ago the redis package was released in version 3.0.0. Since then I see the following error when using django-redis-cache: ``` >>> from django.core.cache import cache >>> cache.get("foo",...
Hello, can I use these datatypes with your library?
Is django-redis-cache support Django 1.11?
- Add specific target for django 1.11 in travis configuration. - Fix problem with int => long conversion in python 2.7 - Maybe the problems with travis builds comes from...
Hi. I've found some inconsistency in documents. The documentation [says](https://github.com/sebleier/django-redis-cache/blame/master/docs/api.rst#L31) that timeout with `None` value cache is set indefinitely. And according to the implementation of [`BaseRedisCache._set`](https://github.com/sebleier/django-redis-cache/blob/master/redis_cache/backends/base.py#L262) method it also works...
I noticed while using the django redis cache that there is no provision to pass the key, cert nad CA cert to redis for connection event though the python redis...
This isn't pretty, but it works. Originally done based of the 1.6.4 code, it works even on the latest.