diff options
author | Andy McCurdy <andy@andymccurdy.com> | 2015-01-03 19:21:32 -0500 |
---|---|---|
committer | Andy McCurdy <andy@andymccurdy.com> | 2015-01-03 19:21:32 -0500 |
commit | cee81bd7ea1c4c5f00ac91b8d70b10eccd31dd0c (patch) | |
tree | 865aea1e1cbed593a6b3e4861fe5491264064e37 | |
parent | c4a21d53419dac4ef4cec81933ada70055757525 (diff) | |
parent | 76bc4ec5f916732fcf1dc38cdd79f10f77e22dd4 (diff) | |
download | redis-py-cee81bd7ea1c4c5f00ac91b8d70b10eccd31dd0c.tar.gz |
Merge pull request #547 from msabramo/escape_asterisks
Escape 2 asterisks in README.rst
-rw-r--r-- | README.rst | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -68,7 +68,7 @@ to the official command syntax. There are a few exceptions: `this comment on issue #151 <https://github.com/andymccurdy/redis-py/issues/151#issuecomment-1545015>`_ for details). -* **SCAN/SSCAN/HSCAN/ZSCAN**: The *SCAN commands are implemented as they +* **SCAN/SSCAN/HSCAN/ZSCAN**: The \*SCAN commands are implemented as they exist in the Redis documentation. In addition, each command has an equivilant iterator method. These are purely for convenience so the user doesn't have to keep track of the cursor while iterating. Use the @@ -643,7 +643,7 @@ See `Guidelines for Redis clients with support for Redis Sentinel Scan Iterators ^^^^^^^^^^^^^^ -The *SCAN commands introduced in Redis 2.8 can be cumbersome to use. While +The \*SCAN commands introduced in Redis 2.8 can be cumbersome to use. While these commands are fully supported, redis-py also exposes the following methods that return Python iterators for convenience: `scan_iter`, `hscan_iter`, `sscan_iter` and `zscan_iter`. |