This is a minimalist Rails application created to test background workers on Engine Yard Cloud.
To generate 100 jobs:
ECHO_JOB_COUNT=100 bundle exec rake echo:generate
DelayedJob, Resque and Sidekiq are already in the Gemfile. To switch the ActiveJob backend, modify config/application.rb
. Uncomment one backend and comment out the lines for the other backends.
config.active_job.queue_adapter = :sidekiq
#config.active_job.queue_adapter = :delayed_job
#config.active_job.queue_adapter = :resque