Last active
November 14, 2018 17:52
-
-
Save MattSurabian/9534815 to your computer and use it in GitHub Desktop.
One liner for deleting based on a pattern in redis. KEYS supports wildcards, delete doesn't. No worries xargs to the rescue. You might not need HOST, or PORT depending on your setup. You might need to sudo BOTH commands depending on your setup.
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 -h <HOST> -p <PORT> KEYS "<PATTERN>" | xargs -i% redis-cli -h <HOST> -p <PORT> DEL % |
this has issue with keys containing special characters, you need to wrap each key in single quote i think.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using keys is dangerous in a production environment. Therefore in development, you should get out of the habit of using it. This works better (and can be varied):