私の IIS 7.5 Web サーバーには gzip が正しくセットアップされており、ほとんどの場合に機能します。
しかし、応答ヘッダーを見ると、JsonResult メソッドに対して行った要求が gzip されていないことがわかります。JsonResult が Content-Encoding: gzip でデータを返すようにするには、何を変更する必要がありますか?
これは、JsonResult メソッドを呼び出すときのヘッダーのスクリーンショットです。
RenderPartial() など、html を返すものを呼び出したときのヘッダーのスクリーンショットと比較すると、次のようになります。
編集:これらは、applicationHost.config からの私の圧縮設定です。
<httpCompression
directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
<scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" />
<dynamicTypes>
<add mimeType="text/*" enabled="true" />
<add mimeType="application/json" enabled="true" />
<add mimeType="application/json; charset=utf-8" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/x-javascript" enabled="true" />
<add mimeType="*/*" enabled="false" />
</dynamicTypes>
<staticTypes>
<add mimeType="text/*" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/json" enabled="true" />
<add mimeType="application/json; charset=utf-8" 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>