gitlab-org--gitlab-foss/lib/gitlab/application_rate_limiter/increment_per_action.rb

23 lines
489 B
Ruby

# frozen_string_literal: true
module Gitlab
module ApplicationRateLimiter
class IncrementPerAction < BaseStrategy
def increment(cache_key, expiry)
with_redis do |redis|
redis.pipelined do |pipeline|
pipeline.incr(cache_key)
pipeline.expire(cache_key, expiry)
end.first
end
end
def read(cache_key)
with_redis do |redis|
redis.get(cache_key).to_i
end
end
end
end
end