This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-07 10:42:32 -07:00
|
|
|
redis_connection = Redis.new(
|
2017-05-03 14:18:13 -07:00
|
|
|
url: ENV['REDIS_URL'],
|
2016-11-07 14:20:52 -08:00
|
|
|
driver: :hiredis
|
2016-11-15 07:56:29 -08:00
|
|
|
)
|
2017-05-03 14:18:13 -07:00
|
|
|
|
2017-05-07 10:42:32 -07:00
|
|
|
namespace = ENV.fetch('REDIS_NAMESPACE') { nil }
|
2017-05-20 12:06:09 -07:00
|
|
|
|
2017-05-07 10:42:32 -07:00
|
|
|
if namespace
|
2017-05-20 12:06:09 -07:00
|
|
|
Redis.current = Redis::Namespace.new(namespace, redis: redis_connection)
|
2017-05-07 10:42:32 -07:00
|
|
|
else
|
|
|
|
Redis.current = redis_connection
|
|
|
|
end
|