ASP.NET MVC 2アプリケーションでは、次の属性を使用してアクションを装飾しました。
[ETag]
[OutputCache(Duration = 604800, VaryByParam = "none", Location = OutputCacheLocation.Any)]
public ActionResult Index()
(ETag属性には、ここにある属性クラスを使用しました。)
また、web.configに以下を追加しました。
<!-- gzip compression -->
<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
<scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" staticCompressionLevel="9" />
<dynamicTypes>
<add mimeType="text/*" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/x-javascript" enabled="true" />
<add mimeType="application/json" enabled="true" />
<add mimeType="*/*" enabled="false" />
</dynamicTypes>
<staticTypes>
<add mimeType="text/*" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/x-javascript" enabled="true" />
<add mimeType="application/atom+xml" enabled="true" />
<add mimeType="application/xaml+xml" enabled="true" />
<add mimeType="*/*" enabled="false" />
</staticTypes>
</httpCompression>
<urlCompression doStaticCompression="true" doDynamicCompression="true" />
<!-- ETags -->
<httpProtocol>
<customHeaders>
<add name="ETag" value="""" />
</customHeaders>
</httpProtocol>
<!-- Expiry -->
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
</staticContent>
私の問題は、ホスティングサーバーからページをロードしてFirebugのヘッダーを表示すると、ETagを受信しますが、キャッシュの有効期限がないことです。
Cache-Control private
Content-Type text/html; charset=utf-8
Etag HKQ9Pp6hFTMRZYZbbIi3HA==,""
Server Microsoft-IIS/7.0
X-AspNetMvc-Version 2.0
X-AspNet-Version 4.0.30319
X-Powered-By ASP.NET
Date Tue, 06 Sep 2011 18:31:05 GMT
Content-Length 4447
ページをローカルにロードすると、応答にはETagがありませんが、「Cache -Control」フィールドと「Expires」フィールドが設定されています。
Server ASP.NET Development Server/10.0.0.0
Date Tue, 06 Sep 2011 18:33:55 GMT
X-AspNet-Version 4.0.30319
X-AspNetMvc-Version 2.0
Cache-Control private, max-age=604800
Expires Tue, 13 Sep 2011 18:33:54 GMT
Last-Modified Tue, 06 Sep 2011 18:33:54 GMT
Content-Type text/html; charset=utf-8
Content-Length 4447
Connection Close
また、web.configでgzip圧縮を設定していますが、どちらの応答ヘッダーにも表示されないことに注意してください。
では、なぜweb.configファイルの設定が無視されているように見えるのでしょうか。私のホスティングサーバーがこれらを上書きする可能性はありますか?もしそうなら、彼らがキャッシュや圧縮設定を削除することはあまり意味がありませんか?