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