ASP.Net Web 应用程序,请记住性能、可扩展性

发布于 2024-08-30 01:22:39 字数 150 浏览 3 评论 0原文

开发人员在开发 Web 应用程序时应该牢记或注意哪些事项。

Web 应用程序,例如社交网络 Web 应用程序。

为了获得良好的性能和可扩展性,必须实现哪些内容。

如果您有此类问题,请提供任何文章或博客或建议 -

提前致谢

what are the things a developer should keep in mind or should take care when depeloping a web application.

web application e.g. social networking web app.

which are the things which must be implemented to get good performance and scalability.

please provide any article or blogs or suggestions for this kind of question if you have

-thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

白昼 2024-09-06 01:22:39

我脑海中突然浮现的一些事情

  • 构建缓存
  • 保持代码清洁和(单元)可测试的
  • 信息 代码覆盖率
  • 通过索引优化数据库并检查执行计划
  • 重构您构建的所有内容
  • 优化前端加载时间(缩小、gzip、压缩)
  • 使用源代码控制

Some things that popped up in my mind

  • build in caching
  • keep code clean and (unit) testable
  • messure code coverage
  • optimize database with indexs and check execution plans
  • refactor every thing you build
  • optimize front end loading time (minification, gzip, compressing)
  • use source control
静水深流 2024-09-06 01:22:39

在不需要的地方停用 Viewstate。

最重要的是:
确保尽可能减少往返次数。理解 ASP.NET 网站的生命周期对于这一点来说是最重要的。

http://www.startvbdotnet.com/aspsite/forms/formlifecycle.aspx

Deactivate Viewstate where you don't need it.

Most important:
Make sure to hold the amount of roundtrips as small as possible. Understanding the Life-Cyclus of an asp.net website is most important for that matter.

http://www.startvbdotnet.com/aspsite/forms/formlifecycle.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文