Commit 53b8e8cb authored by Sean Bleier's avatar Sean Bleier

Add a few updates.

parent b4229a7d
...@@ -25,8 +25,9 @@ Changelog ...@@ -25,8 +25,9 @@ Changelog
----- -----
* Adds support for redis-py >= 3.0. * Adds support for redis-py >= 3.0.
* Drops support for Redis 2.6 * Drops support for Redis 2.6.
* Drops support for Python 3.4 * Drops support for Python 3.4 and 3.5.
* Add support for Python 3.7.
* Removes custom ``expire`` method in lieu of Django's ``touch``. * Removes custom ``expire`` method in lieu of Django's ``touch``.
* Removes ``CacheKey`` in favor of string literals. * Removes ``CacheKey`` in favor of string literals.
......
...@@ -137,7 +137,7 @@ Cache Methods Provided by django-redis-cache ...@@ -137,7 +137,7 @@ Cache Methods Provided by django-redis-cache
This implementation is slightly more advanced that Django's. It provides thundering herd This implementation is slightly more advanced that Django's. It provides thundering herd
protection, which prevents multiple threads/processes from calling the value-generating protection, which prevents multiple threads/processes from calling the value-generating
function too much. function at the same time.
:param key: Location of the value :param key: Location of the value
:param func: Callable used to set the value if key does not exist. :param func: Callable used to set the value if key does not exist.
......
...@@ -37,7 +37,7 @@ Quick Start ...@@ -37,7 +37,7 @@ Quick Start
* `redis`_ >= 2.8 * `redis`_ >= 2.8
* `redis-py`_ >= 2.10.3 * `redis-py`_ >= 3.0.0
* `python`_ >= 2.7 * `python`_ >= 2.7
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment