debian-mirror-gitlab/lib/gitlab/redis/cache.rb

34 lines
1 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
# please require all dependencies below:
2018-03-17 18:26:18 +05:30
require_relative 'wrapper' unless defined?(::Rails) && ::Rails.root.present?
2017-09-10 17:25:29 +05:30
module Gitlab
module Redis
class Cache < ::Gitlab::Redis::Wrapper
2019-12-04 20:38:33 +05:30
CACHE_NAMESPACE = 'cache:gitlab'
DEFAULT_REDIS_CACHE_URL = 'redis://localhost:6380'
REDIS_CACHE_CONFIG_ENV_VAR_NAME = 'GITLAB_REDIS_CACHE_CONFIG_FILE'
2017-09-10 17:25:29 +05:30
class << self
def default_url
DEFAULT_REDIS_CACHE_URL
end
def config_file_name
# if ENV set for this class, use it even if it points to a file does not exist
file_name = ENV[REDIS_CACHE_CONFIG_ENV_VAR_NAME]
return file_name unless file_name.nil?
# otherwise, if config files exists for this class, use it
file_name = config_file_path('redis.cache.yml')
return file_name if File.file?(file_name)
# this will force use of DEFAULT_REDIS_QUEUES_URL when config file is absent
super
end
end
end
end
end