2017-05-22 09:01:02 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-04-26 19:37:59 -04:00
|
|
|
def setup_redis_env_url(prefix = nil, defaults = true)
|
|
|
|
prefix = prefix.to_s.upcase + '_' unless prefix.nil?
|
|
|
|
prefix = '' if prefix.nil?
|
2017-05-22 09:01:02 -04:00
|
|
|
|
2018-04-26 19:37:59 -04:00
|
|
|
return if ENV[prefix + 'REDIS_URL'].present?
|
|
|
|
|
|
|
|
password = ENV.fetch(prefix + 'REDIS_PASSWORD') { '' if defaults }
|
|
|
|
host = ENV.fetch(prefix + 'REDIS_HOST') { 'localhost' if defaults }
|
|
|
|
port = ENV.fetch(prefix + 'REDIS_PORT') { 6379 if defaults }
|
|
|
|
db = ENV.fetch(prefix + 'REDIS_DB') { 0 if defaults }
|
|
|
|
|
|
|
|
ENV[prefix + 'REDIS_URL'] = if [password, host, port, db].all?(&:nil?)
|
|
|
|
ENV['REDIS_URL']
|
|
|
|
else
|
2020-02-28 21:00:43 -05:00
|
|
|
Addressable::URI.parse("redis://#{host}:#{port}/#{db}").tap do |uri|
|
|
|
|
uri.password = password if password.present?
|
|
|
|
end.normalize.to_str
|
2018-04-26 19:37:59 -04:00
|
|
|
end
|
2017-05-22 09:01:02 -04:00
|
|
|
end
|
|
|
|
|
2018-04-26 19:37:59 -04:00
|
|
|
setup_redis_env_url
|
|
|
|
setup_redis_env_url(:cache, false)
|
|
|
|
|
2020-08-31 21:04:00 -04:00
|
|
|
namespace = ENV.fetch('REDIS_NAMESPACE', nil)
|
2017-05-22 09:01:02 -04:00
|
|
|
cache_namespace = namespace ? namespace + '_cache' : 'cache'
|
2018-04-26 19:37:59 -04:00
|
|
|
|
2017-05-22 09:01:02 -04:00
|
|
|
REDIS_CACHE_PARAMS = {
|
2021-03-17 05:09:55 -04:00
|
|
|
driver: :hiredis,
|
|
|
|
url: ENV['REDIS_URL'],
|
2017-05-22 09:01:02 -04:00
|
|
|
expires_in: 10.minutes,
|
|
|
|
namespace: cache_namespace,
|
|
|
|
}.freeze
|