Skip to content

Instantly share code, notes, and snippets.

@m0zziter
Forked from mattweyant/redis-delallbykey
Created December 20, 2016 19:21
Show Gist options
  • Save m0zziter/7340ae4e32ae096397e31c65e26befe0 to your computer and use it in GitHub Desktop.
Save m0zziter/7340ae4e32ae096397e31c65e26befe0 to your computer and use it in GitHub Desktop.
Delete all keys from Redis matching a regular expression
# All credit: http://stackoverflow.com/questions/4006324/how-to-atomically-delete-keys-matching-a-pattern-with-redis
redis-cli [options] KEYS "prefix:*" | xargs redis-cli [options] DEL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment