Skip to content

Instantly share code, notes, and snippets.

@tonythere
Last active August 4, 2016 07:59
Show Gist options
  • Save tonythere/5eacc0e2944d00b8580c to your computer and use it in GitHub Desktop.
Save tonythere/5eacc0e2944d00b8580c to your computer and use it in GitHub Desktop.
Redis cheatsheet
# Remove keys by prefix
EVAL "return redis.call('del', unpack(redis.call('keys', ARGV[1])))" 0 prefix:*
redis-cli KEYS "prefix:*" | xargs redis-cli DEL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment