2014-02-04 17:08:09 +00:00
|
|
|
if Rails.env.development?
|
|
|
|
$redis = Redis.new(:host => 'localhost', :port=> 6379)
|
|
|
|
elsif Rails.env.production?
|
|
|
|
uri = URI.parse(ENV["REDISTOGO_URL"])
|
|
|
|
$redis = Redis.new(:host => uri.host, :port => uri.port, :password => uri.password)
|
|
|
|
end
|