Skip to content

Instantly share code, notes, and snippets.

@aduermael
Created October 10, 2016 21:46
Show Gist options
  • Save aduermael/b2e907ccb3e5da425a1658e23104650f to your computer and use it in GitHub Desktop.
Save aduermael/b2e907ccb3e5da425a1658e23104650f to your computer and use it in GitHub Desktop.
redis one-liners

Remove all keys with given prefix

  eval 'local keys = redis.call("keys", ARGV[1]); redis.call("del", unpack(keys));' 0 "prefix*"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment