Last active
November 22, 2019 19:17
-
-
Save alassek/cea2650461efd7f65df11d1d86547e56 to your computer and use it in GitHub Desktop.
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
def Redis.Mutex(name, expires:, redis: Redis.current, &block) | |
raise ArgumentError, "block required" unless block_given? | |
if block.arity.zero? | |
success = block | |
block = proc do |on| | |
on.success(&success) | |
on.failure(&proc{}) | |
end | |
end | |
result = | |
if Redis.current.set("mutex:#{name}", Time.current.iso8601, nx: true, ex: expires.seconds) | |
M.Success(name) | |
else | |
M.Failure(name) | |
end | |
Dry::Matcher::ResultMatcher.(result, &block) | |
ensure | |
Redis.current.del("mutex:#{name}") if result.success? | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment