Skip to content

Instantly share code, notes, and snippets.

@noushad-pp
Created January 24, 2018 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noushad-pp/ffe2346fe1af166044e432467b361e99 to your computer and use it in GitHub Desktop.
Save noushad-pp/ffe2346fe1af166044e432467b361e99 to your computer and use it in GitHub Desktop.
How to atomically delete keys matching a pattern using Redis
EVAL "return redis.call('del', unpack(redis.call('keys', ARGV[1])))" 0 prefix:*
@noushad-pp
Copy link
Author

Execute in bash
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