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

cache.rb « redis « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60944268f91ea24797f547f5eaee3c5fca6af0dd (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
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true

module Gitlab
  module Redis
    class Cache < ::Gitlab::Redis::Wrapper
      CACHE_NAMESPACE = 'cache:gitlab'

      class << self
        # Full list of options:
        # https://api.rubyonrails.org/classes/ActiveSupport/Cache/RedisCacheStore.html#method-c-new
        def active_support_config
          {
            redis: pool,
            compress: Gitlab::Utils.to_boolean(ENV.fetch('ENABLE_REDIS_CACHE_COMPRESSION', '1')),
            namespace: CACHE_NAMESPACE,
            expires_in: default_ttl_seconds
          }
        end

        def default_ttl_seconds
          ENV.fetch('GITLAB_RAILS_CACHE_DEFAULT_TTL_SECONDS', 8.hours).to_i
        end

        # Exposes redis for Peek adapter. To be removed after ClusterCache migration.
        def multistore_redis
          redis
        end

        private

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

          MultiStore.new(primary_store, secondary_store, store_name)
        end
      end
    end
  end
end