asp.net – 如何使用输出缓存.ashx处理程序

前端之家收集整理的这篇文章主要介绍了asp.net – 如何使用输出缓存.ashx处理程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我如何使用输出缓存与.ashx处理程序?在这种情况下,我做一些沉重的图像处理,并希望处理程序缓存一分钟左右。

此外,有没有人有任何建议如何防止狗狗?

解决方法

有一些好的来源,但你想缓存你的处理服务器端和客户端。

添加HTTP头应该有助于在客户端缓存

这里有一些响应标头开始..

你可以花几个小时来调整它们,直到获得所需的性能

//Adds document content type
context.Response.ContentType = currentDocument.MimeType;
context.Response.Cache.SetCacheability(HttpCacheability.Public);
context.Response.Cache.SetExpires(DateTime.Now.AddMinutes(10));
context.Response.Cache.SetMaxAge(new TimeSpan(0,10,0)); 
context.Response.AddHeader("Last-Modified",currentDocument.LastUpdated.ToLongDateString());

// Send back the file content
context.Response.BinaryWrite(currentDocument.Document);

至于服务器端缓存是一个不同的怪物…有很多缓存资源在那里…

原文链接:https://www.f2er.com/aspnet/254147.html

猜你在找的asp.Net相关文章