Answer the question
In order to leave comments, you need to log in
How to run resque:scheduler on Windows?
Windows 8. I'm trying to attach a task scheduler to the site.
gemfile
gem 'resque', :require => 'resque/server'
gem 'resque_mailer'
gem 'resque-scheduler'
require 'resque/tasks'
require 'resque/scheduler/tasks'
task "resque:setup" => :environment
namespace :resque do
task :setup do
require 'resque'
# you probably already have this somewhere
# Resque.redis = 'localhost:6379'
end
task :setup_schedule => :setup do
require 'resque-scheduler'
# If you want to be able to dynamically change the schedule,
# uncomment this line. A dynamic schedule can be updated via the
# Resque::Scheduler.set_schedule (and remove_schedule) methods.
# When dynamic is set to true, the scheduler process looks for
# schedule changes and applies them on the fly.
# Note: This feature is only available in >=2.0.0.
# Resque::Scheduler.dynamic = true
# The schedule doesn't need to be stored in a YAML, it just needs to
# be a hash. YAML is usually the easiest.
Resque.schedule = YAML.load_file("#{Rails.root}/config/rescue_schedule.yml")
# If your schedule already has +queue+ set for each job, you don't
# need to require your jobs. This can be an advantage since it's
# less code that resque-scheduler needs to know about. But in a small
# project, it's usually easier to just include you job classes here.
# So, something like this:
# require 'jobs'
end
task :scheduler_setup => :setup_schedule
end
send_sms_ru_balance:
cron: "30 6 * * 1"
class: "SendSmsRuBalance"
every:
- '1h'
- :first_in: '10s'
queue: low
description: "Отправка баланса sms.ru на почту"
class SendSmsRuBalance
@queue = :send_sms_balance
def self.perform
AdminMailer.send_sms_balance.deliver_now
end
end
unsupported signal SIGUSR1
Answer the question
In order to leave comments, you need to log in
gem clockwork / It works great with resque. and run under windows
What am I doing wrong?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question