Created
August 30, 2013 22:04
-
-
Save davetapley/6394753 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redis 127.0.0.1:6379> LPUSH test, "hello" | |
(integer) 2 | |
redis 127.0.0.1:6379> LLEN test | |
(integer) 0 | |
redis 127.0.0.1:6379> RPOP test | |
(nil) | |
redis 127.0.0.1:6379> LPOP test | |
(nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment