Ask HN: Do you still run Redis and workers just for background jobs?
https://news.ycombinator.com/item?id=47320768Hi HN,
I'm working on small SaaS projects and keep running into the same issue: background jobs require a lot of infrastructure. Even for simple things like delayed tasks or scheduled jobs I end up running Redis, queue workers, cron, retries, monitoring, etc. For bigger systems this makes sense, but for small apps it feels like too much.
I'm thinking about building a small service that would let you send a job via API and get an HTTP callback when it's time to run, without running your own queue or workers. Basically: no Redis, no workers, no cron, no queue server
Would something like this actually be useful, or am I trying to solve a problem that isn't really there?