我正在使用ImageResizing库,在我的 C# Mvc 应用程序中调整和传递我的图像。
但是没有发生的一件事是我的图像没有被缓存。
我正在努力理解为每个图像适当添加缓存所需的内容。
我只需要知道我是否在写轨道上?这会正确缓存我的图像吗?
我想我需要做的是在我的 ImageResizer_OnPostAuthorizeRequestStart 中设置 FinalContentType 和 FinalContentType(我不知道从哪里获得这些值)
然后,我希望在 Application_PreSendRequestHeaders 中我可以使用下面的代码正确设置缓存标头。
我使用了此处描述的方法的修改版本。
这是我的代码:
private static void ImageResizer_OnPostAuthorizeRequestStart(IHttpModule sender2, HttpContext context)
{
string path = Config.Current.Pipeline.PreRewritePath;
if (!path.StartsWith(PathUtils.ResolveAppRelative("~/s3"), StringComparison.OrdinalIgnoreCase)) return;
Config.Current.Pipeline.SkipFileTypeCheck = true;
Config.Current.Pipeline.ModifiedQueryString["cache"] = ServerCacheMode.Always.ToString();
}
protected void Application_PreSendRequestHeaders(Object source, EventArgs e)
{
var app = source as HttpApplication;
HttpContext context = (app != null) ? app.Context : null;
if (context != null && context.Items != null && context.Items["FinalContentType"] != null && context.Items["LastModifiedDate"] != null)
{
//Clear previous output
//context.Response.Clear();
context.Response.ContentType = context.Items["FinalContentType"].ToString();
//FinalContentType is set to image/jpeg or whatever the image mime-type is earlier in code.
//Add caching headers
int mins = 1; //Or Configuration.AppSettings['whatever']
if (mins > 0)
{
context.Response.Expires = 1;
}
var lastModified = (DateTime?)context.Items["LastModifiedDate"]; //Set earlier in code.
if (lastModified != DateTime.MinValue)
{
Response.Cache.SetLastModified(lastModified.Value);
}
Response.Cache.SetCacheability(context.Request.IsAuthenticated ? HttpCacheability.Private : HttpCacheability.Public);
}
}