From ef7806edc3a2deacdca38efc9edfdfcc2b46d203 Mon Sep 17 00:00:00 2001 From: Ilan Steemers Date: Mon, 6 Jul 2015 14:10:14 +0200 Subject: [PATCH] adds support for django-redis connections --- docs/install.rst | 2 ++ docs/tasks.rst | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/docs/install.rst b/docs/install.rst index 8f281b7..caf764b 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -109,6 +109,8 @@ Connection settings for Redis. Defaults:: For more information on these settings please refer to the `Redis-py `__ documentation +.. _django_redis: + django_redis ~~~~~~~~~~~~ diff --git a/docs/tasks.rst b/docs/tasks.rst index 480810a..4a49b5b 100644 --- a/docs/tasks.rst +++ b/docs/tasks.rst @@ -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 `__ , you can :ref:`configure ` Django Q to use its connection pool. + + Reference ---------