an opinionated implementation of resque in node
No description provided.
Resque Queue for AdonisJS v6
Make a regular expression time out if it takes too long to execute
Offload tasks to a pool of workers on node.js and in the browser
Seamless REST/GraphQL API mocking library for browser and Node.js.
Worker based timers for Stream.io JS-based SDKs and applications
Utilities for executing code in Web Workers
Consistent Web Workers in browser and Node.
A fast, efficient Node.js Worker Thread Pool implementation
Create an AbortSignal that aborts after a delay
Timers extensions
Timeout a promise after a specified amount of time
Temporal.io SDK Worker sub-package
The worker which is used by the worker-timers package.
A really simple message queue based on Redis
Distribute processing tasks to child processes with an über-simple API and baked-in durability & custom concurrency options.
Communicate with a Web Worker using Promises, allowing transferList
Missing keepalive http.Agent
Make a synchronous function have a timeout
A little factory function to create a JSON-RPC based Web Worker implementation.
The broker which is used by the worker-timers package.
worker loader module for webpack
Consistent Web Workers in browser and Node.
A Resque plugin. If you want set worker timeout, extend it with this module. For example: class TransferFileWorker extend Resque::Plugins::WorkerTimeout # 10 minutes (default 10 minutes) @timeout = 600 # reenqueue worker if timeout happend (default false) @reenqueue_worker = true def self.perform(file_name) # transfer file end end
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 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.