inlined/resque — explained in plain English
Analysis updated 2026-08-11 · repo last pushed 2013-01-25
Queue a large monthly sales report in an e-commerce app and email it when ready.
Build downloadable file archives in the background without slowing down your website.
Fire off webhooks asynchronously so users are not stuck waiting on a loading screen.
Update a search index or warm a cache behind the scenes using background workers.
| inlined/resque | 0xdevalias/huginn-chef | 100rabhg/masterdetailapp | |
|---|---|---|---|
| Language | Ruby | Ruby | Ruby |
| Last pushed | 2013-01-25 | 2014-09-30 | 2024-02-20 |
| Maintenance | Dormant | Dormant | Dormant |
| Setup difficulty | moderate | hard | moderate |
| Complexity | 3/5 | 4/5 | 2/5 |
| Audience | developer | ops devops | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires Redis as an external dependency to store and manage the job queues.
Resque is a tool for Ruby applications that moves slow, heavy tasks to the background so your app stays fast. If your website needs to do something time-consuming, like building a file archive, updating a search index, or warming a cache, you don't want the user staring at a loading screen while it happens. Instead, Resque lets you put that work on a to-do list, and background "workers" handle it later. At a high level, the system works like a kitchen order line. When your app needs to do a slow task, it writes down a small job ticket and hands it to a queue. Workers act like line cooks: they pick up tickets, do the work, and check for more. You can have multiple queues for different types of work, and you can run workers across multiple machines to handle the load. Anyone building a Ruby on Rails app or similar Ruby service would use this. For example, if you run an e-commerce site, you might want to generate a large monthly sales report. Instead of making an admin wait for the page to load, you queue the report generation. A worker builds the report in the background and emails it when it's done. At GitHub, where this tool originated, they use it for dozens of tasks like building downloadable archives and firing off webhooks. A notable design choice is how the system expects things to break. The workers are built to assume that background jobs will occasionally lock up, run too long, or consume too much memory. To handle this, a worker creates a separate child process for each job. When the job is done, the child process exits, freeing up memory. If a job goes off the rails, the system can easily kill the misbehaving job without skipping a beat. It also includes a built-in web dashboard. This gives you a simple interface to see what your workers are currently doing, which queues are backing up, and, crucially, a place to review and retry jobs that failed.
Resque is a Ruby tool that moves slow, heavy tasks to the background so your app stays fast. It puts work on a to-do list that background workers pick up and handle later.
Mainly Ruby. The stack also includes Ruby, Redis, Rails.
Dormant — no commits in 2+ years (last push 2013-01-25).
The explanation does not specify the license, so usage terms are unknown.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Don't trust strangers blindly. Verify against the repo.