Revision 5de88e5ef39707b0a6268b39c8d49e11e191f79c authored by Mike Perham on 01 June 2012, 15:24:01 UTC, committed by Mike Perham on 01 June 2012, 15:24:01 UTC
1 parent da02a0a
Raw File
clockwork.rb
# Sidekiq defers scheduling to other, better suited gems.
# If you want to run a job regularly, here's an example
# of using the 'clockwork' gem to push jobs to Sidekiq
# regularly.

# require boot & environment for a Rails app
# require_relative "../config/boot"
# require_relative "../config/environment"
require "clockwork"

class MyWorker
  include Sidekiq::Worker

  def perform(count)
    puts "Job ##{count}: Late night, so tired..."
  end

  def self.late_night_work
    10.times do |x|
      perform_async(x)
    end
  end
end

class HourlyWorker
  include Sidekiq::Worker

  def perform
    cleanup_database
    format_hard_drive
  end
end

module Clockwork
  # Kick off a bunch of jobs early in the morning
  every 1.day, 'my_worker.late_night_work', :at => '4:30 am' do
    MyWorker.late_night_work
  end

  every 1.hour do
    HourlyWorker.perform_async
  end
end

back to top