Click here to Skip to main content
15,896,456 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Two possible scenarios: your web code exists in a collection of classes, modules, etc. sitting in App_Code; or everything is compiled into an assembly that is referenced in bin. The code is specific to this web app, so questions about sharing can be put aside.

Is there a meaningful performance difference between these two situations?
Posted
Updated 13-May-10 14:52pm
v4

1 solution

In my experience I have seen no difference with the compiled vs xcopy'd versions of deployment for performance, other than on the first request.

Once it's loaded into IIS, it's there in memory and I haven't observed a change (we switched a site once with about 150 simultaneous users and there didn't seem to be any difference at all...not sure if that scales).

Your biggest difference in performance will likely be if you compile/publish to release mode versus debug mode.

Cheers,
-James
 
Share this answer
 
Comments
Gregory Gadow 13-May-10 16:07pm    
Excellent, that is what I was hoping to hear. Thanks for the response.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900