18 lines
293 B
Ruby
18 lines
293 B
Ruby
# frozen_string_literal: true
|
|
|
|
module LockableConcern
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
def lock_action(key)
|
|
lock = Kredis.flag(key)
|
|
head :locked and return if lock.marked?
|
|
|
|
lock.mark(expires_in: 10.seconds)
|
|
|
|
yield
|
|
|
|
lock.remove
|
|
end
|
|
end
|
|
end
|