Closed pezholio closed 10 years ago
Is this just an in-app queue, or the general job queue? If just in-app, I think we can probably just use delayed job. Heroku can handle a background worker, though it will cost us some cash to have another process.
Yeah, good call. Do we not get a worker dyno too on the free tier though?
No, that takes us out of it.
Hmmmm... DelayedJob looks like a faff to set up sans Rails. Could use Resque combined with RedisToGo free tier?
That would also work.
Also, we could have resque running on another app (similar to how we work with services maanger), which means we don't need to worry about going over the free tier!
Wait, no. That's bullshit. Ignore me
We need to post off API requests to a queue, to avoid too much load on the server. Does Heroku have a queuing system?