Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 595 Bytes

README.md

File metadata and controls

18 lines (10 loc) · 595 Bytes

delayed_job MongoMapper backend

Installation

Add the gems to your Gemfile:

gem 'delayed_job'
gem 'delayed_job_mongo_mapper', :git => "git://github.com/thisduck/delayed_job_mongo_mapper.git"

After running bundle install, create the indexes (and don't forget to do this on your production database):

rails runner 'Delayed::Backend::MongoMapper::Job.create_indexes'

That's it. Use delayed_job as normal.

From

This is forked and modified from delayed_job_mongoid.