Hacker News new | ask | show | jobs
by cagmz 2422 days ago
Just curious; what do you use Redis for? Thanks for your post!
1 comments

Jobs (e.g. uptime checks, payment processing, sending emails) are added to the job queue (Redis) and background workers pick it up from there, and churn through them asynchronously. Most of the work happens in the background, so in my case, Redis is a critical piece of infrastructure.

https://devcenter.heroku.com/articles/background-jobs-queuei...

Ah, of course! I saw background jobs and Redis but didn't make the connection at the time.