2016-11-15 09:56:29 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-07 12:42:32 -05:00
|
|
|
redis_connection = Redis.new(
|
2017-05-03 16:18:13 -05:00
|
|
|
url: ENV['REDIS_URL'],
|
2016-11-07 16:20:52 -06:00
|
|
|
driver: :hiredis
|
2016-11-15 09:56:29 -06:00
|
|
|
)
|
2017-05-03 16:18:13 -05:00
|
|
|
|
2017-05-07 12:42:32 -05:00
|
|
|
namespace = ENV.fetch('REDIS_NAMESPACE') { nil }
|
2017-05-20 14:06:09 -05:00
|
|
|
|
2017-05-07 12:42:32 -05:00
|
|
|
if namespace
|
2017-05-20 14:06:09 -05:00
|
|
|
Redis.current = Redis::Namespace.new(namespace, redis: redis_connection)
|
2017-05-07 12:42:32 -05:00
|
|
|
else
|
|
|
|
Redis.current = redis_connection
|
|
|
|
end
|