demarches-normaliennes/app/controllers/concerns/lockable_concern.rb

17 lines
281 B
Ruby
Raw Normal View History

module LockableConcern
extend ActiveSupport::Concern
included do
def lock_action(key)
lock = Kredis.flag(key, config: :volatile)
head :locked and return if lock.marked?
lock.mark(expires_in: 10.seconds)
yield
lock.remove
end
end
end