キャッシングに関する多くの投稿をすでに読んだことがありますが、実際に私のニーズに正確に一致するものはありません。私のmvc3アプリには、画像タイプのファイルを返すアクションメソッドGetImage()があります。次に、このメソッドをビューで使用して画像を表示します。
<img width="75" height="75" src="@Url.Action("GetImage", "Store", new {productId = item.ProductId})"/>
サーバーに画像をキャッシュしたい。だから、私がすでに試したこと:
1)OutputCacheAttributeを使用するには:
[HttpGet, OutputCache(Duration = 10, VaryByParam = "productId", Location = OutputCacheLocation.Server, NoStore = true)]
public FileContentResult GetImage(int productId)
{
var p = _productRepository.GetProduct(productId);
if (p != null)
{
if (System.IO.File.Exists(GetFullProductImagePath(productId)))
{
var image = Image.FromFile(GetFullProductImagePath(productId));
return File(GetFileContents(image), "image/jpeg");
}
}
var defaultPath = AppDomain.CurrentDomain.BaseDirectory +
ConfigurationManager.AppSettings["default-images-directory"];
var defaultImage = Image.FromFile(Path.Combine(defaultPath, "DefaultProductImage.jpg"));
return File(GetFileContents(defaultImage), "image/jpeg");
}
画像はキャッシュされません(ステータスは200 OKになります)
2)GetImage()メソッドで次のResponse.Cacheメソッドを使用するには:
public FileContentResult GetImage(int productId)
{
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetMaxAge(new TimeSpan(0, 0, 0, 10));
Response.Cache.SetExpires(DateTime.Now.Add(new TimeSpan(0, 0, 0, 10)));
Response.Cache.AppendCacheExtension("must-revalidate, proxy-revalidate");
// other code is the same
}
画像はキャッシュされません
3)ここで取得します:304変更されていませんが、GetImage()メソッドは何も返しません(空の画像)
public FileContentResult GetImage(int productId)
{
Response.StatusCode = 304;
Response.StatusDescription = "Not Modified";
Response.AddHeader("Content-Length", "0");
// other code is the same
}
質問:このアクションメソッドの出力をサーバーにキャッシュするにはどうすればよいですか?