Created
July 28, 2015 12:06
-
-
Save davydkov/80266fddaf3564e88884 to your computer and use it in GitHub Desktop.
Delete from redis by pattern
This file contains 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 "local keys = redis.call('keys', ARGV[1]) \n for i=1,#keys,5000 do \n redis.call('del', unpack(keys, i, math.min(i+4999, #keys))) \n end \n return keys" 0 prefix:* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment