From 8c86a29761ec0d38f5f7bc73d3992c46bff4a661 Mon Sep 17 00:00:00 2001 From: Artem Malyshev Date: Sat, 5 Aug 2017 16:02:09 +0300 Subject: [PATCH] Mention hiredis installation option. See https://github.com/django/asgi_redis/issues/56 --- docs/backends.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/backends.rst b/docs/backends.rst index f500d14..af2f655 100644 --- a/docs/backends.rst +++ b/docs/backends.rst @@ -32,6 +32,14 @@ but you can override this with the ``hosts`` key in its config:: }, } +Consider `hiredis`_ library installation to improve layer performance:: + + pip install hiredis + +It will be used automatically if it's installed. + +.. _hiredis: https://github.com/redis/hiredis-py + Sharding ~~~~~~~~