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
|
|
|
|
|
|
|
|
Redis.current = Redis.new(
|
2016-11-07 14:20:52 -08:00
|
|
|
host: ENV.fetch('REDIS_HOST') { 'localhost' },
|
|
|
|
port: ENV.fetch('REDIS_PORT') { 6379 },
|
2017-01-17 03:00:03 -08:00
|
|
|
password: ENV.fetch('REDIS_PASSWORD') { false },
|
2016-11-07 14:20:52 -08:00
|
|
|
driver: :hiredis
|
2016-11-15 07:56:29 -08:00
|
|
|
)
|