Skip to content

Instantly share code, notes, and snippets.

@pvgomes
Last active June 24, 2016 20:04
Show Gist options
  • Save pvgomes/35daff8f387fa0225f97 to your computer and use it in GitHub Desktop.
Save pvgomes/35daff8f387fa0225f97 to your computer and use it in GitHub Desktop.
Redis Commads
### Remove multiple itens by pattern
redis-cli KEYS "prefix:*" | xargs redis-cli DEL
By conf
redis-cli -h 0.0.0.0 -p 6380 KEYS "*" | xargs redis-cli -h 0.0.0.0 -p 6380 DEL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment