X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/f6bea06f74d4f065b5f8e4680792266eb97d7582..cc2750670f1cb2fafde3e7d1a340f6674dab1749:/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.