Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaellouieloria/4f3bdb4b2e8aa07d926f98d417dc0a2c to your computer and use it in GitHub Desktop.
Save michaellouieloria/4f3bdb4b2e8aa07d926f98d417dc0a2c 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.
redis-cli -h <HOST> -p <PORT> KEYS "<PATTERN>" | xargs -i% redis-cli -h <HOST> -p <PORT> DEL %
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment