Skip to content

Instantly share code, notes, and snippets.

@xtang
Last active August 29, 2015 14:07
Show Gist options
  • Save xtang/68617d6c92c5bc9172db to your computer and use it in GitHub Desktop.
Save xtang/68617d6c92c5bc9172db to your computer and use it in GitHub Desktop.
// borrowed from http://stackoverflow.com/questions/4006324/how-to-atomically-delete-keys-matching-a-pattern-using-redis
EVAL "return redis.call('del', unpack(redis.call('keys', ARGV[1])))" 0 bearyboard:*
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