Skip to content

Instantly share code, notes, and snippets.

@itomg
Created June 17, 2015 04:26
Show Gist options
  • Save itomg/c9f7b6510d66d5bfd427 to your computer and use it in GitHub Desktop.
Save itomg/c9f7b6510d66d5bfd427 to your computer and use it in GitHub Desktop.
Redis del mulitple keys
## run in terminal
redis-cli KEYS "prefix:*" | xargs redis-cli DEL
## run in redis-cli
EVAL "return redis.call('del', unpack(redis.call('keys', ARGV[1])))" 0 prefix:*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment