我有一个基于Ruby和Sinatra的工作应用程序,部署在Heroku上.
我想利用使用Varnish的Heroku提供的HTTP缓存.
我不知道设置标题的最佳方法是什么,并且正确的语法.
对最佳方法和语法的任何想法?
before do
headers "Content-Type" => "text/html; charset=utf8"
end
get '/' do
headers['Cache-Control'] = 'public,max-age=600'
# SOME STUFF HERE
haml :home,{:layout => :layout_minfooter}
end
原文链接:https://www.f2er.com/ruby/273620.html