github地址:https://github.com/plashchynski/crono
引入gem
gem 'crono'
运行构造器
rails generate crono:install
会创建一个config/cronotab.rb的配置文件,然后运行迁移
rake db:migrate
创建一个job
class TestJob < ApplicationJob
queue_as :default
def perform(*args)
#你的任务
end
end
在之前的config/cronotab.rb设置定时
Crono.perform(AppOralPracticeCommentAddPlayTimesJob).every 10.seconds
执行周期任务,在你的工程根目录下运行命令
bundle exec crono RAILS_ENV=development