X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/efc296a1d6068f4e0cde584415d4c14a963c175c..63b7b7fb34984b47971a4ced65ae49b6c7a350fa:/doc/BrpoplpushCommand.html diff --git a/doc/BrpoplpushCommand.html b/doc/BrpoplpushCommand.html new file mode 100644 index 00000000..ba45eab0 --- /dev/null +++ b/doc/BrpoplpushCommand.html @@ -0,0 +1,39 @@ + + + +
+ + + +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.