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