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