如何在heroku上使用python webapp建立redis数据库连接

时间:2018-03-31 06:04:05

标签: python heroku redis

我创建了一个使用Redis作为数据库的Web应用程序,它在本地运行正常但是当我在Heroku上部署它时给出错误。 我已经创建了Redis插件,尝试使用Heroku提供的凭据创建Redis服务器实例。如何确保Redis服务器是否在Heroku上运行?

import redis

# Localhost
redis = redis.Redis('localhost') #working fine on localhost

#heroku
redis = redis.Redis('redis://user:password@host:port')
# throwing error connecting to redis://user:password@host:port. Name or service not known.

0 个答案:

没有答案