English 中文(简体)
如何缩短 Asp. net 网络应用程序调试时间?
原标题:How to make Asp.net Web Application Debug time shorter?

我有一个大型 ASP.NET 网络应用程序, 具有以下属性 :

  • I am using the Visual Studio 2010 Ultimate IDE
  • .Net Framework 3.5
  • ASP.NET (web application)
  • NHibernate version 2.2 is used as the ORM in this project
  • Developer system : CPU dual Core 2.94GHz x64 with 6GB of Ram
  • Project ReBuild time 3 ~ 4 minutes
  • Build project after a change usually take 1 Minute

当开发者试图在默认模式下浏览页面时,第一个页面的出现需要在 < 强 > 2~ 4分钟 < /强 > 之间,而且他/她可以在合理时间内浏览其他页面

当开发者想要调试页面时, 查看第一个页面需要 < 坚固 > 4~ 7分钟 < / 坚固 > 。

所以,如果开发商修改代码,想在调试模式下检查它, 他/她就会发疯, 因为需要很多时间来检查代码中的小改动。

有办法减少调试时间吗?

我将一个大型项目推向了“强大的”许多小型项目。 (小项目在可变的时间内是可以调试的,因此大部分项目是好的)。

但其中4个项目仍然庞大,它们都有“强势”问题(/强势),没有变化。我也“强势”将它们安置在本地的IIS(/强势)中,但没有变化。

如能提出任何建议,将不胜感激

提前感谢您

问题回答

因为你正在使用NEVERNET作为ORM 我唯一能认为需要这么长的时间 是因为你在滥用它, 导致SELECT N+1问题或类似的问题。

On the other side i don t know you re solution structure but i suggest you take a look here: http://geekswithblogs.net/MarkPearl/archive/2012/05/24/vs2010-large-solution-bottle-neck.aspx

大型网络项目的一个有用之处是明智地使用单位测试(例如微软或尼姑)来测试业务对象和逻辑、 db 连接等等。 单位测试可以更快地进行调试, 因为在此情况下不需要开发网络服务器和网络格式管理间接费用。 以这种方式研究主要的慢调试器将只用于非常具体的网络界面问题 。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签