Project
Reverse Dependencies for resque
The projects listed here declare resque as a runtime or development dependency
0.01
A simple event bus on top of Resque. Publish and subscribe to events as they occur through a queue.
2020
2021
2022
2023
2024
2025
0.01
Adds event publishing and job tracking ability to Resque
2020
2021
2022
2023
2024
2025
0.01
Enable send_later support for Resque
2020
2021
2022
2023
2024
2025
0.01
Resque queue backed by database audits, with automatic retry
2020
2021
2022
2023
2024
2025
0.01
resque-exceptional provides a Resque failure backend that sends exceptions
raised by jobs to getexceptional.com.
2020
2021
2022
2023
2024
2025
0.01
Normally resque processes queues in a fixed order. This can lead to jobs in queues at the end of the list not getting process for very long periods. resque-fairly provides a mechanism where by workers are distributed across the set of queues with pending jobs fairly. This results in a much mor...
2020
2021
2022
2023
2024
2025
0.01
A Resque plugin that provides endpoints which distributes Jobs submitted to them to (multiple) subscribing queues. Useful for loosely coupled inter-application communication.
2020
2021
2022
2023
2024
2025
0.01
Handles establishing and disconnecting db connections when running Resque on Heroku cedar stack.
2020
2021
2022
2023
2024
2025
0.01
Auto-scale Heroku workers for Resque
2020
2021
2022
2023
2024
2025
0.01
Seamless integration of resque with resque-progress and resque-lock
2020
2021
2022
2023
2024
2025
0.01
A Resque plugin to ensure unique workers while preventing queue starvation
2020
2021
2022
2023
2024
2025
0.01
A simple mechanism to create custom log files based on queue names of Resque workers.
2020
2021
2022
2023
2024
2025
0.01
Simple asynchronous emails with Resque
2020
2021
2022
2023
2024
2025
0.01
A Rails engine port of the Sinatra app that is included in Chris Wanstrath's resque gem.
2020
2021
2022
2023
2024
2025
0.01
Mock resque with threads
2020
2021
2022
2023
2024
2025
0.01
A Resque plugin that provides helpers for progress updates from within your
jobs.
For example:
class MyJob
extend Resque::Plugins::Progress
def self.perform(meta_id, *args)
(0..10).each do |i|
at(i, 10, "Lifted #{num} heavy things. #{10-num} more to go!")
...
2020
2021
2022
2023
2024
2025
0.01
A Resque plugin. Provides a lightweight publish/subscribe messaging system, with message persistence when clients are down.
2020
2021
2022
2023
2024
2025
0.01
A Resque plugin. If you want only one instance of your job
queued at a time, extend it with this module.
For example:
class ExampleJob
extend Resque::Jobs::Queue::Lock
def self.perform(repo_id)
heavy_lifting
end
end
2020
2021
2022
2023
2024
2025
0.01
A resque plugin for specifying the priority between queues that workers use to determine what to work on next
2020
2021
2022
2023
2024
2025