You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Built on top of `redis-py <https://github.com/andymccurdy/redis-py>`_.
18
+
Built on top of redis-py_.
19
19
20
20
Contributors
21
21
------------
@@ -120,7 +120,8 @@ classmethod that ``FlaskRedis`` depends on, so we wrap it and add our own.
120
120
Usage
121
121
-----
122
122
123
-
``FlaskRedis`` proxies attribute access to an underlying Redis connection. So treat it as if it were a regular ``Redis`` instance.
123
+
``FlaskRedis`` proxies attribute access to an underlying Redis connection. So treat it as if it were a regular ``Redis``
124
+
instance.
124
125
125
126
.. code-block:: python
126
127
@@ -130,19 +131,21 @@ Usage
130
131
defindex():
131
132
return redis_store.get('potato', 'Not Set')
132
133
133
-
**Protip:** The `redis-py <https://github.com/andymccurdy/redis-py>`_ package currently holds the 'redis' namespace,
134
-
so if you are looking to make use of it, your Redis object shouldn't be named 'redis'.
134
+
**Protip:** The redis-py_ package currently holds the 'redis' namespace, so if you are looking to make use of it, your
135
+
Redis object shouldn't be named 'redis'.
135
136
136
-
For detailed instructions regarding the usage of the client, check the `redis-py <https://github.com/andymccurdy/redis-py>`_ documentation.
137
+
For detailed instructions regarding the usage of the client, check the redis-py_ documentation.
137
138
138
139
Advanced features, such as Lua scripting, pipelines and callbacks are detailed within the projects README.
139
140
140
141
Contribute
141
142
----------
142
143
143
-
#. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug. There is a Contributor Friendly tag for issues that should be ideal for people who are not very familiar with the codebase yet.
144
+
#. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug. There is a
145
+
Contributor Friendly tag for issues that should be ideal for people who are not very familiar with the codebase yet.
144
146
#. Fork `the repository`_ on Github to start making your changes to the **master** branch (or branch off of it).
145
147
#. Write a test which shows that the bug was fixed or that the feature works as expected.
146
148
#. Send a pull request and bug the maintainer until it gets merged and published.
0 commit comments