Rails 3 允许直接向 HTTP 客户端发送静态文件,并且性能更高,并绕过您的应用服务器进程(如所述,请参阅http://john.guen.in...)
send_file '/path/to.png', :x_sendfile => true, :type => 'image/png'
我想在heroku上部署我的应用程序。
heroku 使用 Nginx 0.6.32(参见http://docs.heroku.com/aspen)。
x_sendfile
对heroku有效吗?
这是我在 Nginx http://wiki.nginx.org/NginxXSendfile上找到的
干杯