summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTim Douglas <me@timdoug.com>2013-04-16 15:23:25 -0400
committerTim Douglas <me@timdoug.com>2013-04-16 15:23:25 -0400
commite82df9cac8d9e64b8e54a358f9c286e98b2e1011 (patch)
tree1e371974976d181590d2da4a0505a293a974026f /README.md
parent9e0749af6f8a31601cce27e77c2e38b0df0ca443 (diff)
downloadredis-py-e82df9cac8d9e64b8e54a358f9c286e98b2e1011.tar.gz
Update the README with accurate pipeline transaction information
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 2e19bb4..036dbc7 100644
--- a/README.md
+++ b/README.md
@@ -41,9 +41,9 @@ official command syntax. There are a few exceptions:
* DEL: 'del' is a reserved keyword in the Python syntax. Therefore redis-py
uses 'delete' instead.
* CONFIG GET|SET: These are implemented separately as config_get or config_set.
-* MULTI/EXEC: These are implemented as part of the Pipeline class. Calling
- the pipeline method and specifying use_transaction=True will cause the
- pipeline to be wrapped with the MULTI and EXEC statements when it is executed.
+* MULTI/EXEC: These are implemented as part of the Pipeline class. The
+ pipeline is wrapped with the MULTI and EXEC statements by default when it
+ is executed, which can be disabled by specifying transaction=False.
See more about Pipelines below.
* SUBSCRIBE/LISTEN: Similar to pipelines, PubSub is implemented as a separate
class as it places the underlying connection in a state where it can't