Skip to content

Instantly share code, notes, and snippets.

@sur
Created August 22, 2015 11:03
Show Gist options
  • Save sur/ca4abddc4357e98d58e4 to your computer and use it in GitHub Desktop.
Save sur/ca4abddc4357e98d58e4 to your computer and use it in GitHub Desktop.
redis-cli
redis 127.0.0.1:6379> KEYS sidetiq
(empty list or set)
redis 127.0.0.1:6379> KEYS sidetiq:*
1) "sidetiq:RecurrentMailDownloaderWorker:next"
2) "sidetiq:RecurrentMailDownloaderWorker:last"
redis 127.0.0.1:6379> DEL sidetiq:RecurrentMailDownloaderWorker:next
(integer) 1
redis 127.0.0.1:6379> DEL sidetiq:RecurrentMailDownloaderWorker:last
(integer) 1
redis 127.0.0.1:6379> KEYS sidetiq:*
(empty list or set)
redis 127.0.0.1:6379>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment