Project
Reverse Dependencies for rspec
The projects listed here declare rspec as a runtime or development dependency
0.0
Restrict max number of resque jobs.
2021
2022
2023
2024
2025
2026
0.0
resque plugin to have priority in the queue
2021
2022
2023
2024
2025
2026
0.0
Enable ActiveRecord query cache for Resque jobs
2021
2022
2023
2024
2025
2026
0.0
An Active Record model can be defined as 'queueable'. That adds extensions to add any method to the queue that exists on the method instance.
2021
2022
2023
2024
2025
2026
0.0
Resque Plugin adding simple queue statuses.
2021
2022
2023
2024
2025
2026
0.0
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...
2021
2022
2023
2024
2025
2026
0.0
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
2021
2022
2023
2024
2025
2026
0.0
Remotely enqueueing and dequeueing jobs across Redis namespaces should
be simpler. BJ Neilsen laid a solid foundation for this gem, which is
forked off of his gem resque-remote. That said, these two gems provide a
different set of methods for remote enqueueing and dequeueing.
...
2021
2022
2023
2024
2025
2026
0.0
Make your custom reports to CSV in background using Resque with simple DSL
2021
2022
2023
2024
2025
2026
0.0
Usually Resque workers work on queues in the given order (if there is something in the first, work it, otherwise if the there is something in the second, work on it, and so on). This plugin randomizes the order of the queues based on weights, so that a given queue will be the first queue to try b...
2021
2022
2023
2024
2025
2026
0.0
Ensures that only one Resque job with unique arguments is running at a time.
2021
2022
2023
2024
2025
2026
0.0
This will stagger your resque jobs over a configurable duration rather then enqueueing them all together
2021
2022
2023
2024
2025
2026
0.0
If you want to graph the workload created by your different Resque jobs, extend them with this plugin and use the data generated to know exactly the amount of jobs executed.
2021
2022
2023
2024
2025
2026
0.0
Resque plugin that pushes the job statistics to statsd
2021
2022
2023
2024
2025
2026
0.0
Adds support for futures to resque-status
2021
2022
2023
2024
2025
2026
0.0
Resque plugin allowing long-running jobs to automatically fail after a specified time.
2021
2022
2023
2024
2025
2026
0.0
Store a hash of any metadata against your queues in resque
2021
2022
2023
2024
2025
2026
0.0
Ensures that for a given queue, only one worker is working on a job at any given time.
Example:
require 'resque/plugins/unique_at_runtime'
class StrictlySerialJob
include Resque::Plugins::UniqueAtRuntime
@queue = :serial_work
def self.perform
# only one at a time in thi...
2021
2022
2023
2024
2025
2026
0.0
Configure resque-unique_in_queue and resque-unique_at_runtime uniqueness by arity of perform method, with automated cleanup tools
2021
2022
2023
2024
2025
2026
0.0
A Resque plugin for unique jobs
2021
2022
2023
2024
2025
2026