node-resque
node-resque copied to clipboard
Node.js Background jobs backed by redis.
Hi, I've found the following warning message. ``` (node:80974) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 21 end listeners added to [Redis]. Use emitter.setMaxListeners() to increase limit ``` And then investigated...
Hi, when loading up the resque-web interface, I get the same error from numerous pages (such as the /overview page as seen below). It looks like it's trying to split...
Hi everybody! I have some trouble with my configuration I have explore my redis database, and the folder resque if growing fast. I'm putting a new app in production soon,...
After I read the Redis cluster connection in the readme document, I've tested the sample source connecting the Redis Cluster with 3 nodes. Then I faced the following error message....
Hey, I found an issue related with `JobLock` Plugin. By default, JobLock re-enqueues a job if its key was already set. If, for some reason, renqueue fails the error will...
Pretty obvious why neither of these events are emitted when the Retry plugin re-enqueues a job: The `Queue#enqueue` method emits both, but the logic for the retry plugin includes a...
The documentation has the following blurb: > `new queue` requires only the "queue" variable to be set. You can also pass the `jobs` hash to it. What happens if I...
Nodejs 10.5 has a new experimental feature: [worker threads](https://nodejs.org/dist/latest-v10.x/docs/api/worker_threads.html). It would be cool if node-resque would run its jobs inside worker threads. one huge benefit I can think of is...
I do not all the intricacies of JS but the following line seems weird to me https://github.com/taskrabbit/node-resque/blob/1a2def9f46f9be5a80a5dd8630b89d23aff2ca53/lib/pluginRunner.js#L24 Is there a reason why the plugin is instantiated to just get name?...
I would like to know if it is possible to create a job as a class. For instance, would something like this be possible? ```js class SendNotificationMails extends someBaseJobClass {...