将 Dokku 与 Resque 一起使用

Using Dokku with Resque

有没有人有使用 resque 和 dokku 的经验?

我一直在搜索,但不知道如何设置: - 我的档案 - 我的应用程序和 redis 服务器之间的连接(我找到了 dokku 的 dokku-redis 插件)

如有指点,将不胜感激!

首先,link你的应用的redis服务:

dokku redis:link SERVICE_NAME APP_NAME

接下来,像这样向您的 procfile 添加一个条目:

resque: env TERM_CHILD=1 bundle exec rake resque:work

最后,扩大你的 resque workers:

dokku ps:scale APP_NAME resque=1