Skip to content

Instantly share code, notes, and snippets.

@davetapley
Created August 30, 2013 22:04
Show Gist options
  • Save davetapley/6394753 to your computer and use it in GitHub Desktop.
Save davetapley/6394753 to your computer and use it in GitHub Desktop.
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