Project
Reverse Dependencies for resque
The projects listed here declare resque as a runtime or development dependency
0.0
Resque command line tool
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Send Resque.info to CloudWatch Metrics
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Allows reporting failures of resque jobs to Amazon CloudWatch
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Sends exceptions to coalmineapp.com
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
A handler for Resque's failure backend that will send exceptions through to crashlog.io. Uses your existing CrashLog setup.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
A Resque plugin. Allows you to use Redis to queue up and then Resque to process transactions
on transaction-heavy tables that need to be replicated on other tables optimized for
reporting.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Defining Resque boilerplate since 2013
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Allow execute methods in background without adding new jobs. Like .delay method in DelayedJob
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Enable send_later support for Resque. Includes support for mongoid backends. Based on the
original resque-delay gem by Michael Ryko.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
With ResqueDelivery, you can send ActionMailer messages asynchronously with Resque.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
This is a Resque plugin that allows us to disable jobs from being processed, by using the job class name and arguments.
It uses some Redis data structures to keep a record of what jobs need to be disabled and how many jobs were disabled for that rule.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Resque allows a single queue to have multiple jobs of the same time. This is because it uses a redis list, which does not have the concept of a unique entry. Sometimes, however, a particular value is only needed if it isn't already on the queue.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
resque_empty_queue is an extension to the Resque queue system runs a job after a queue has been emptied.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
A Resque plugin. Adds locking, with optional timeout/deadlock handling to
resque jobs.
Using a `lock_timeout` allows you to re-aquire the lock should your worker
fail, crash, or is otherwise unable to relase the lock.
i.e. Your server unexpectedly looses power. Very handy for jobs that are
recurring or may be retried.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Resque plugin to log info whenever a job is enqueued.
Example: Enqueued SortUserJob to "low": user_id=1, options={"force"=>true}
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
ensure active record connections are valid before performing resque background jobs
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
A resque plugin that adds retry/exponential backoff functionality to your
resque jobs.
Simply extend your module/class with this module:
require 'resque-exponential-backoff'
class DeliverWebHook
extend Resque::Plugins::ExponentialBackoff
def self.perform(url, hook_id, hmac_key)
heavy_lifting
end
end
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
An extension to Resque that makes it act more like Delayed::Job
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Gem that sends mail in case of resque job failure. Extend to customize email summary, payload, exception.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Resque will fail to enqueue your job if redis is unavailable. Resque-fallback-inline ensures that the job will be run inline if that happens.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity