X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/efc3408748061a08ec5ff18e392c30f31f5094a2..06e09c9b586d0e2c5d91dc596f871be56c6e0971:/doc/BrpoplpushCommand.html diff --git a/doc/BrpoplpushCommand.html b/doc/BrpoplpushCommand.html deleted file mode 100644 index ba45eab0..00000000 --- a/doc/BrpoplpushCommand.html +++ /dev/null @@ -1,39 +0,0 @@ - - - -
- - - -Blocking version of the RPOPLPUSH command. Atomically removes and returnsthe last element (tail) of the source list at srckey, and as a side effect pushes the returned element in the head of the list at dstkey.-If the source list is empty, the client blocks until another client pushes against the source list. Of course in such a case the push operation against the destination list will be performed after the command unblocks detecting a push against the source list.