I'm using Resque in a Heroku app for background jobs and I'm wondering if there's a way to get a given job processed faster.
For instance, there are a few jobs that involve taking a large file (20GB+), reading the contents of it, and splitting it into database entries (millions of entries).
That happens in a single job.
Throwing more workers doesn't work since only one worker is used for the job. So is there a way to make a given worker work faster?