Resque::Ratchetio
Adds Ratcherio as a failure backend to redis
Installation
Add this line to your application's Gemfile:
gem 'resque-ratchetio', git: "git://github.com/CrowdFlower/resque-ratchetio.git"
And then execute:
$ bundle
Usage
require 'resque/failure/redis'
require 'resque/failure/ratchetio'
require 'resque/failure/multiple'
Resque::Failure::Multiple.classes = [Resque::Failure::Redis, Resque::Failure::Ratchetio]
Resque::Failure.backend = Resque::Failure::Multiple
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request