node-sidekiq
node-sidekiq copied to clipboard
Enqueue jobs to sidekiq from your node apps. Closely mirrors the official ruby sidekiq interface and supports job scheduling.
Is there any way to determine whether the job has been performed?
I've found it useful to know `jid` of enqueued jobs. Redis [SADD](http://redis.io/commands/sadd#return-value) and [ZADD](http://redis.io/commands/ZADD#return-value) methods returns only a number of elements that were added to the set. That's the value...
I wanted to initialize using a Redis URL, `redis.createClient(redis_url[, options])`, as seen on https://www.npmjs.com/package/redis. It took me a while to realize this package is using a very old version that...
Sometimes it's useful to have ability to cancel some jobs. Now node-sidekiq supports it by `dequeue(payload)` method. For example ``` javascript var some_storage = {}, sidekiq = new Sidekiq(cli), action...