Adds some retry options to coffee-resque. Concept lifted from Ruby's resque-retry
an opinionated implementation of resque in node
A utility to retry failed async methods.
Abstraction for exponential and custom retry strategies for failed operations.
Retries a function that returns a promise, leveraging the power of the retry module.
TypeScript definitions for retry
Retrying made simple, easy and async
Retries a function that returns a promise, leveraging the power of the retry module.
An exchange for operation retry support in urql
Retry a promise-returning or async function
Check whether a request can be retried based on the `error.code`
Axios plugin that intercepts failed requests and retries them whenever posible.
Retry HTTP requests with Axios.
Retry a request.
Extend any fetch library with retry functionality
Retry a failed promise
Automatic retry plugin for octokit
TypeScript definitions for async-retry
retry for functions returning a promise
A webpack plugin to retry loading of chunks that failed to load
Abstraction for exponential and custom retry strategies for failed operations.
TypeScript definitions for promise-retry
[](https://github.com/vercel/fetch/actions?workflow=CI)
Retry client middleware for nice-grpc
resque-retry provides retry, delay and exponential backoff support for resque jobs. Features: * Redis backed retry count/limit. * Retry on all or specific exceptions. * Exponential backoff (varying the delay between retrys). * Multiple failure backend with retry suppression & resque-web tab. * Small & Extendable - plenty of places to override retry logic/settings.
resque-retry provides retry, delay and exponential backoff support for resque jobs. Features: * Redis backed retry count/limit. * Retry on all or specific exceptions. * Exponential backoff (varying the delay between retrys). * Multiple failure backend with retry suppression & resque-web tab. * Small & Extendable - plenty of places to override retry logic/settings.
resque-retry provides retry, delay and exponential backoff support for resque jobs. Features: * Redis backed retry count/limit. * Retry on all or specific exceptions. * Exponential backoff (varying the delay between retrys). * Small & Extendable - plenty of places to override retry logic/settings.
Gem para dar retry de forma otimizada nos jobs que falharam do Resque
Adds lockable and retryable jobs to Resque.
A Resque plugin. If you want only one instance of your job running at a time, but want to re-enqueue rejected jobs, extend it with this module. For example: class UpdateNetworkGraph extend Resque::Jobs::RetryOnLocked def self.perform(repo_id) heavy_lifting end end
Resque queue backed by database audits, with automatic retry
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
Adds persistence to Resque jobs, and retry properties
A Resque plugin. Adds locking, with optional timeout/deadlock handling to resque jobs. Using a `lock_timeout` allows you to re-acquire 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.
A stripped version of the Resque web interface that's safe to use by not so trustworthy personnel. You get all the same information as the regular interface, but can't delete or retry anything.
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.