Created
July 1, 2015 13:33
-
-
Save egemenyildiz/d86d864806a861542871 to your computer and use it in GitHub Desktop.
[LUA] Redis bulk/batch operation scripts (rename, delete)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Bulk deletes keys start with "prefix" | |
EVAL "for i, name in ipairs(redis.call('KEYS', 'prefix*')) do redis.call('DEL', name); end" 0 | |
# Bulk renames keys start with "prefix" to "postfix". | |
# e.g. prefixwithtail -> postfixwithtail | |
EVAL "for i, name in ipairs(redis.call('KEYS', 'prefix*')) do local x = string.gsub(name, 'pre', 'post'); redis.call('RENAME', name, x); end" 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment