Skip to content

Instantly share code, notes, and snippets.

@alassek
Last active November 22, 2019 19:17
Show Gist options
  • Save alassek/cea2650461efd7f65df11d1d86547e56 to your computer and use it in GitHub Desktop.
Save alassek/cea2650461efd7f65df11d1d86547e56 to your computer and use it in GitHub Desktop.
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