如何在 ASP.NET MVC 中支持 ETag?
如何在 ASP.NET MVC 中支持 ETag?
How do I support ETags in ASP.NET MVC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 ASP.NET MVC 中支持 ETag?
How do I support ETags in ASP.NET MVC?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
@Elijah Glover 的回答是答案的一部分,但并不完整。 这将设置 ETag,但如果不在服务器端检查它,您就无法获得 ETag 的好处。 您可以这样做:
另外,另一个提示是您需要设置响应的可缓存性,否则默认情况下它是“私有的”并且 ETag 不会在响应中设置:
所以一个完整的示例:
@Elijah Glover's answer is part of the answer, but not really complete. This will set the ETag, but you're not getting the benefits of ETags without checking it on the server side. You do that with:
Also, another tip is that you need to set the cacheability of the response, otherwise by default it's "private" and the ETag won't be set in the response:
So a full example:
MVC 中的 ETAG 与 WebForms 或 HttpHandler 相同。
您需要一种创建 ETAG 值的方法,我发现的最好方法是使用文件 MD5 或 ShortGuid。
由于 .net 接受字符串作为 ETAG,因此您可以使用
MIX 中的视频轻松设置它,网址为最后他们将 ETAG 与 REST 结合使用
ETAG's in MVC are the same as WebForms or HttpHandlers.
You need a way of creating the ETAG value, the best way I have found is using a File MD5 or ShortGuid.
Since .net accepts a string as a ETAG, you can set it easily using
Video from MIX, at the end they use ETAG's with REST