输出缓冲对性能有帮助吗?
我听说一次性写出整个 ASP.NET 页面有助于提高性能。就像将以下内容作为 Page_Load
上的第一行:
Response.BufferOutput = true;
并在所有处理结束时使用 Response.Flush
。
这有帮助吗?如果是的话,使用它有什么缺点吗?
I've heard that writing out the entire ASP.NET page in one go helps performance. Like having the following as the first line on Page_Load
:
Response.BufferOutput = true;
And using Response.Flush
at the end of all processing.
Does this help? If yes, are there any the disadvantages in using it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当它是瓶颈时才有帮助。你是怎么测量的?
It only helps if it is the bottleneck. How did you measure?