Project
Reverse Dependencies for resque
The projects listed here declare resque as a runtime or development dependency
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
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
0.01
A Resque plugin which allows you to create dedicated queues for jobs that use rate limited apis.
These queues will pause when one of the jobs hits a rate limit, and unpause after a suitable time period.
The rate_limited_queue can be used directly, and just requires catching the rate limit excepti...
2020
2021
2022
2023
2024
2025
0.01
resque plugin that allows you to attach information when a job is put in redis, and to do whatever you want with the information when it is popped off the resque queue
2020
2021
2022
2023
2024
2025
0.01
Compatible with Resque 1.x. Use Resque.push if you are using >= 2.x.
Resque is great. So is job processing with redis. Our biggest drawback has been that
resque requires the class that will be processing a job to be loaded when the job
is enqueued. But what happens when the implementing job is ...
2020
2021
2022
2023
2024
2025
0.01
If you want to be able fetch the result from a Resque
job's perform method. Results will be encoded using JSON.
For example:
require 'resque-result'
class MyJob
extend Resque::Plugins::Result
def self.perform(meta_id, big_num)
factor(big_num)
e...
2020
2021
2022
2023
2024
2025
0.01
Deliver mail in a resque job
2020
2021
2022
2023
2024
2025
0.01
Telework is a Resque plugin aimed at controlling Resque workers from the web UI. It makes it easy to manage workers on a
complex systems that may include several hosts, different queue(s) and an evolving source code that is deployed several times a day.
Beyond starting and stopping worker...
2020
2021
2022
2023
2024
2025
0.01
top for Resque
2020
2021
2022
2023
2024
2025
0.01
Unique Resque queues using redis 1.6.0 scripting, sets and not much else
2020
2021
2022
2023
2024
2025
0.01
Automatically kill a child of resque worker based on max memory.
2020
2021
2022
2023
2024
2025
0.01
Utilities for using Resque in a Rails app
2020
2021
2022
2023
2024
2025
0.01
RhoConnect App Integration Server and related command-line utilities
2020
2021
2022
2023
2024
2025
0.01
A unified interface for various messaging queues
2020
2021
2022
2023
2024
2025
0.01
This plugin provides native instrumentation for collecting
Resque metrics for queue, worker, working, failed, pending,
and processed jobs.
2020
2021
2022
2023
2024
2025