From 682ae5731f8944b3243a3ceaaa6909eb9609b01e Mon Sep 17 00:00:00 2001 From: Ali-Akber Saifee Date: Tue, 6 Oct 2015 01:41:01 +0500 Subject: [PATCH] reference limits documentation for storage scheme --- doc/source/conf.py | 1 + doc/source/index.rst | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index ae26413e..ceeef2eb 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -58,6 +58,7 @@ intersphinx_mapping = {'python': ('http://docs.python.org/', None) , 'flask': ("http://flask.pocoo.org/docs/", None) + , 'limits': ("http://limits.readthedocs.org/en/latest/", None) , 'flaskrestful': ('http://flask-restful.readthedocs.org/en/latest/', None) } diff --git a/doc/source/index.rst b/doc/source/index.rst index 17c22a46..f6ccf9ed 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -242,9 +242,10 @@ The following flask configuration values are honored by or ``memcached://host:port``. Using the redis storage requires the installation of the `redis`_ package while memcached relies on the `pymemcache`_ package. + (For details refer to :ref:`storage-scheme`) ``RATELIMIT_STORAGE_OPTIONS`` A dictionary to set extra options to be passed to the storage implementation upon initialization. (Useful if you're - subclassing :class:`limits.Storage` to create a + subclassing :class:`limits.storage.Storage` to create a custom Storage backend.) ``RATELIMIT_STRATEGY`` The rate limiting strategy to use. :ref:`ratelimit-strategy` for details.