Live data from Hacker News

Ask HN: How do you deal with task/job scheduling?

news.ycombinator.com

1–3 of 3 posts

Re: Ask HN: How do you deal with task/job scheduling?

#3
My job scheduling needs are mostly based around Rails, and in that stack I've never found anything more useful than plain old cron. Everything else either is at the whim of the Rails server needing to remember to do something (and if it crashes, it forgets) or needs a complex infrastructure behind it (Redis/Sidekiq). And when it comes to "I want this task to run every day at 1am", I've found absolutely nothing that can perform that other than cron.

I hate using cron because it has its own set of problems, but it's been working for me every day for the past year and a half I've had it running in production. I just don't want to have to stand up a Redis (or similar) stack that's bigger than the web app it's supporting...