1

我有一个 rake 任务,每隔几个小时就会更改主页上的数据。我已经对其进行了测试,它在开发中运行良好。但它在生产中不起作用。我必须做什么才能获得我想看到的变化?我应该添加一个重新启动服务器的命令吗?这会让服务器承认更改吗?有没有更聪明的方法来做到这一点?

耙子任务如下。它将由 heroku 的调度程序插件运行,因此它当前位于 lib/tasks/scheduler.rake 文件中。

desc 'changes the meta tags'
task :mixup_meta_tags => :environment do 
  regex = /@meta_tag/
  file = File.open('app/controllers/site_controller.rb', 'r')
  lines = []
  file.each_line do |line|
    (line =~ regex) ? (lines << replace_line(line)) : (lines << line)
  end
  file.close
  file = File.open('app/controllers/site_controller.rb', 'w')
  lines.each{|line| file.write line} 
  file.close
end

def replace_line(line)
  meta_tags = MetaTag.all.map { |tag| tag["tag"] }
  new_tag = meta_tags.sample(1)[0]
  line = "    @meta_tag = \"#{new_tag}\" \n" # added the newline
end
4

1 回答 1

1

是的,在生产环境中对 Rails 应用程序的更改需要重新启动才能被服务器接收。为了让它即时工作,您可能想尝试这篇文章中提到的解决方案为什么-does-code-need-to-be-reloaded-in-rails-3

于 2012-07-26T14:29:23.243 回答