Nathan Esquenazi

Results 50 issues of Nathan Esquenazi

From @bradgessler: A stub could be provided for peeps that want to assert jobs are thrown on the queue in a test env. Make testing a job is performed work...

quebert

Would be cool to create a threaded worker for processing beanstalk jobs possibly using [celluloid](https://github.com/celluloid/celluloid) similar to @mperham's [sidekiq](https://github.com/mperham/sidekiq) or just a custom threaded solution.

enhancement

Discussing with @bradgessler: Currently: ``` ruby Backburner::Worker.enqueue NewsletterSender, [self.id, user.id], :ttr => 1000 ``` instead: ``` ruby Backburner::Worker.enqueue Backburner::Job.new(NewsletterSender, [self.id, user.id], :ttr => 1000) ``` or: ``` ruby # include...

quebert

From #52, need to support priority labels in configure block

bug

Allow ResqueCompat module to support old resque 1.1 users

quebert

``` ruby beanstalkd://localhost/foo?retry_times=5 # parse prefix and retry from the url ```

quebert

Tube namespacing to support versioning? in the wiki

quebert

From @bradgessler: CLI for querying/filtering jobs for performing batch operations on jobs that are in the queue. This is important for when things go bad in production and certain jobs...

feature

From @bradgessler: > I don't think having different queues per app is a good idea in a beanstalkd world. Resque does this because there's no concept of priorities in Redis....

change

Cleanup github pages and add logo. As suggested by @bradgessler we can use http://thenounproject.com/noun/stove/#icon-No4325 as a starting point. ![Backburner Logo](https://photos-5.dropbox.com/t/0/AAD7UNnqPIqe1HhN1OnxkyuYGNXT2dmqJHmgWM9vao1nRw/12/10281242/png/1024x768/3/1366696800/0/2/stove.png/4UO5LYXYL3pw0yLBsXOIMBClxtUQIqT3swWNBCfRoyY) Download the SVG and PNG here: https://www.dropbox.com/s/kndb4kv5py4m5nh/stove.zip

enhancement