0

Google 给出了以下设置 Apache 服务器以服务 GWT 应用程序的示例。

AppEngine (GAE) app.yaml 文件的等效条目是什么?

<Files *.nocache.*>
  ExpiresActive on
  ExpiresDefault "now"
  Header merge Cache-Control "public, max-age=0, must-revalidate"
</Files>

<Files *.cache.*>
  ExpiresActive on
  ExpiresDefault "now plus 1 year"
</Files>
4

1 回答 1

0

请参阅https://developers.google.com/appengine/docs/go/config/appconfig#Static_Cache_Expiration

过期时间将在 Cache-Control 和 Expires HTTP 响应头中发送,因此,文件很可能被用户的浏览器以及 Internet Service Providers 等中间缓存代理服务器缓存。

于 2013-05-16T09:11:37.667 回答