Qs Resque
Setup Resque message queues. Run Resque workers for the queues. Profit.
Usage
TODO: fill out code snippets with details
Define a Resque queue:
# in config/queues.rb
class MyQueue
include Qs::ResqueQueue
name 'main'
job :do_something, "MyJobs::DoSomething"
end
When you run queue workers, they will be Resque workers.
Running Workers
TODO: check out: https://github.com/nevans/resque-pool
Installation
Add this line to your application's Gemfile:
gem 'qs-resque'
And then execute:
$ bundle
Or install it yourself as:
$ gem install qs-resque
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request