Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rate_limiting.rb « redis « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12710bafbea27cdb57786f7c900b7cf24dad08e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

module Gitlab
  module Redis
    class RateLimiting < ::Gitlab::Redis::Wrapper
      class << self
        # The data we store on RateLimiting used to be stored on Cache.
        def config_fallback
          Cache
        end

        def cache_store
          @cache_store ||= ActiveSupport::Cache::RedisCacheStore.new(
            redis: pool,
            namespace: Cache::CACHE_NAMESPACE,
            error_handler: ::Gitlab::Redis::ERROR_HANDLER
          )
        end

        private

        def redis
          primary_store = ::Redis.new(::Gitlab::Redis::ClusterRateLimiting.params)
          secondary_store = ::Redis.new(params)

          MultiStore.new(primary_store, secondary_store, name.demodulize)
        end
      end
    end
  end
end