Created
June 25, 2015 12:09
-
-
Save ktkaushik/812071045dd43d5f8f94 to your computer and use it in GitHub Desktop.
LUA Eval script to Delete/Expire multiple keys in Redis
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
EVAL "for i, name in ipairs(redis.call('KEYS', 'author_*')) do redis.call('expire', name, 0); end" 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am trying to delete multiple keys and not keys matching any particular pattern