Add DeletedAccountsTableCrawler

This commit is contained in:
Chris Eager
2021-05-28 18:28:59 -05:00
committed by Chris Eager
parent a315c9be92
commit 5193abdab3
7 changed files with 299 additions and 10 deletions

View File

@@ -0,0 +1,8 @@
-- keys: lock_key
-- argv: lock_value
if redis.call("GET", KEYS[1]) == ARGV[1] then
return redis.call("DEL", KEYS[1])
else
return 0
end