adds support for django-redis connections

This commit is contained in:
Ilan Steemers
2015-07-06 14:10:14 +02:00
parent 831427bcc0
commit ef7806edc3
2 changed files with 7 additions and 0 deletions

View File

@@ -109,6 +109,8 @@ Connection settings for Redis. Defaults::
For more information on these settings please refer to the `Redis-py <https://github.com/andymccurdy/redis-py>`__ documentation
.. _django_redis:
django_redis
~~~~~~~~~~~~

View File

@@ -42,6 +42,11 @@ When you are making individual calls to :func:`async` a lot though, it can help
for i in range(50):
async('math.modf', 2.5, redis=redis_client)
.. tip::
If you are using `django-redis <https://github.com/niwinz/django-redis>`__ , you can :ref:`configure <django_redis>` Django Q to use its connection pool.
Reference
---------