程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> ASP.NET Performance Tips

ASP.NET Performance Tips

編輯:.NET實例教程

這兩天看的,覺得還不賴.
Introduction
[ Back To Top ]

I am going to present some of best approaches to improve the performance of ASP.Net applications.

You should think about the separation of your application into logical tiers. You might have heard of the term 3-tier (or n-tIEr) physical architecture. These are usually prescribed architecture patterns that physically divide functionality across processes and/or hardware. As the system needs to scale, more hardware can easily be added. There is, however, a performance hit associated with process and Machine hopping, and it should be avoided. So whenever possible, run the ASP.Net pages and their associated components together in the same application.

Because of the separation of code and the boundaries between tIErs, using Web services or remoting will decrease performance by 20 percent or more.

Return Multiple Recordset
[ Back To Top ]

RevIEw your database

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved