AdityaSharmaTech's picture
Upload 177 files
def1299 verified
raw
history blame contribute delete
244 Bytes
Resque.redis = Redis.new(
host: ENV["REDIS_HOST"],
port: ENV["REDIS_PORT"],
password: ENV["REDIS_PASSWORD"],
thread_safe: true
)
if ENV["RESQUE_NAMESPACE"].present?
Resque.redis.namespace = ENV["RESQUE_NAMESPACE"].to_sym
end