summaryrefslogtreecommitdiff
path: root/lib/gitlab/application_rate_limiter/increment_per_action.rb
blob: a3343c8a97cb635cbd5a1c1f0fea4bfdd37208af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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