15 lines
263 B
Ruby
15 lines
263 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Redis
|
|
class Cache < ::Gitlab::Redis::Wrapper
|
|
CACHE_NAMESPACE = 'cache:gitlab'
|
|
|
|
private
|
|
|
|
def raw_config_hash
|
|
super || { url: 'redis://localhost:6380' }
|
|
end
|
|
end
|
|
end
|
|
end
|