Created
August 22, 2015 11:03
-
-
Save sur/ca4abddc4357e98d58e4 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-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