将这一行添加到 web.config 有什么作用?
我在此处阅读了有关内容 关于我们应该添加的 ASP.NET 应用程序的改进 -
<urlCompression doDynamicCompression="true" doStaticCompression="true" dynamicCompressionBeforeCache="true"/>
谁能用简单的话解释一下它的作用以及每个 .NET 应用程序都应该添加它吗?
I read about here in respect to improvements in asp.net applications that we should add -
<urlCompression doDynamicCompression="true" doStaticCompression="true" dynamicCompressionBeforeCache="true"/>
Can anyone please explain in simple words what this does and should every .net application should have this added ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
取自 iis.net
taken from iis.net
压缩有助于节省带宽,并可能减少页面加载时间。启用压缩后,服务器基本上会在将文件发送到客户端之前对其进行 gzip 压缩。这可能会占用更多的 CPU 时间来进行压缩,但这样做可以节省传输时间。
动态压缩将启用对动态脚本(如 aspx 页面)的压缩。
静态压缩将启用静态文件(如 html 文件和图像)的压缩。
Compression can help save bandwidth, and potentially decrease page loading times. With compression enabled, the server basically gzips the files before sending them to the client. This can take up a little more CPU time to do the compression, but the idea is that you will save time during transmission.
Dynamic compression will enable compression on dynamic scripts like aspx pages.
Static compression will enable compression on static files like html files and images.