X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/efc3408748061a08ec5ff18e392c30f31f5094a2..06e09c9b586d0e2c5d91dc596f871be56c6e0971:/doc/RpushCommand.html diff --git a/doc/RpushCommand.html b/doc/RpushCommand.html deleted file mode 100644 index d7fe7de5..00000000 --- a/doc/RpushCommand.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - -
- - - -
-
- -RpushCommand: Contents
      RPUSH _key_ _string_
      LPUSH _key_ _string_
    Return value -
- -

RpushCommand

- -
- -
- -
- #sidebar ListCommandsSidebar

RPUSH _key_ _string_

-

LPUSH _key_ _string_

-Time complexity: O(1)
Add the string value to the head (LPUSH) or tail (RPUSH) of the liststored at key. If the key does not exist an empty list is created just beforethe append operation. If the key exists but is not a List an erroris returned.
-

Return value

Integer reply, specifically, the number of elements inside the list after the push operation. - -
- -
-
- - -