How should I run delayed_job in production environment?

background, deployment, ruby-on-rails

Solution

See this answer. In a nutshell, use the Collective Idea fork of delayed_job. It contains a script called `delayed_job` that can be used.

Problem

I have no problems with running it in development mode via rake jobs:work. However, I'm somehow unable to figure out how to use it in production. I'm using Capistrano for deployment. Thanks for any advice!

Original source

Related problems