如何在heroku中执行redis-server.exe?

gudnpqoy  于 2021-06-09  发布在  Redis
关注(0)|答案(0)|浏览(268)

我遵循这个教程,并面临如何在heroku中执行redis-server.exe的问题。https://www.youtube.com/watch?v=wv5jlmjs2su&list=pllrm7ronma9enqmnftguzcfzbbnc-oebz&index=1
我在插件上添加了heroku redis。

程序文件

web: gunicorn mysite.wsgi --log-file -

设置

import os
CACHES = {
    "default": {
         "BACKEND": "redis_cache.RedisCache",
         "LOCATION": os.environ.get('REDIS_URL'),
    }
}
.
.
.

我用的是windows。我应该在setting.py或procfile中添加更多内容吗?我是一个新手顺便说一句,欢迎任何建议和意见!谢谢您!

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题