ruby 使用Unicorn作为Rails 3开发服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 使用Unicorn作为Rails 3开发服务器相关的知识,希望对你有一定的参考价值。

task :server do
  # optional port parameter
  port = ENV['PORT'] ? ENV['PORT'] : '3000'
  puts 'start unicorn development'
  # execute unicorn command specifically in development
  # port at 3000 if unspecified
  sh "cd #{Rails.root} && RAILS_ENV=development unicorn -p #{port}"
end
# an alias task
task :s => :server

以上是关于ruby 使用Unicorn作为Rails 3开发服务器的主要内容,如果未能解决你的问题,请参考以下文章

$redis 全局变量与 ruby​​ on rails

ruby基础教程之rails性能优化

使用 Rails 3.1 和 Unicorn 在 Heroku 上进行 HTTP 流式传输

Rails 3.2 Nginx Unicorn 总是尝试从公共文件夹加载 index.html (403)

different between unicorn / unicorn_rails

Ruby on Rails - AJAX 请求不起作用(跨域),尝试了一切