You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RPUSH key string
LPUSH key string
Time complexity: O(1)
Add the string value to the head (LPUSH) or tail (RPUSH) of the list stored at
key. If the key does not exist an empty list is created just before the append
operation. If the key exists but is not a List an error is returned.
Return value
Integer reply, specifically, the number of elements inside the list after the
push operation.
Original issue reported on code.google.com by romf...@gmail.com on 15 Sep 2010 at 8:47
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
romf...@gmail.com
on 15 Sep 2010 at 8:47The text was updated successfully, but these errors were encountered: