Should I precompile ASP.NET 2.0 sites before deployment or not? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T02:24:32Z http://stackoverflow.com/feeds/question/996712 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not 4 Should I precompile ASP.NET 2.0 sites before deployment or not? NetHawk 2009-06-15T15:18:25Z 2009-06-15T16:45:29Z <p>Where I work, we do a very large number very small ASP.NET apps, and it has happened a few times that sites have been deployed in precompiled format, and the app needs to be changed, but the version of the code available in source control is out of date and the developer is not available. The app's dll has to be decompiled and hacked back together. </p> <p>Ideally, it would never happen that a develpoer rushes a change through testing and production and skips checking in the change, we have since made changes to our policies to keep this from happening, but I wonder if the overhead of compiling a site on the server whenever the app pool restarts is a big enough problem that we should avoid uploading our code directly to the server. It would be easier to check the version in source control vs the actual live version if we could download the live source. </p> <p>What are the advantages of precompiling VS uploading cs files directly to the server and having them compiled there?</p> http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not/996726#996726 0 Answer by orthod0ks for Should I precompile ASP.NET 2.0 sites before deployment or not? orthod0ks 2009-06-15T15:21:53Z 2009-06-15T15:21:53Z <p>It would depend on the size of the applications and the frequency of use. If it's being used regularly enough that the app pool is only recycled at the end of the day, a brief wait on first launch in the morning may be worthwhile. If it's only getting hit once every 30 minutes, forcing a recompile each time, it may be worth precompiling.</p> <p>Of course, if it's a very large app that takes a while to compile on first run, I'd lean towards precompiling, especially if it's not getting constant use.</p> http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not/996731#996731 -1 Answer by Ishtar for Should I precompile ASP.NET 2.0 sites before deployment or not? Ishtar 2009-06-15T15:23:48Z 2009-06-15T15:23:48Z <p>The main advantage is in compiling performance on webserver. Also it protects your code, because it is harder to read the code from assembly :-)</p> http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not/996760#996760 1 Answer by Steve Wortham for Should I precompile ASP.NET 2.0 sites before deployment or not? Steve Wortham 2009-06-15T15:28:47Z 2009-06-15T15:34:17Z <p>From purely an ease of use standpoint, I do like simply uploading the source files to the server and forget about pre-compiling.</p> <p>This is what I do for all of the sites I manage, even the big ones. I do try to make a habit of hitting the more important pieces of the application to make sure everything works (and to compile them while I'm at it).</p> <p>And here's another thought. If the site is public you can let the <a href="http://validator.w3.org/checklink" rel="nofollow">w3c link checker</a> loose on it. This will have the effect of compiling every page it hits. And it's a nice thing to do anyway to ensure you don't have any broken links.</p> <p>Simply put, I suppose these routine checks almost eliminate the problem of slow first-visit-compilation from your users. And since it's a good routine to follow anyway, it has worked out well for me.</p> http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not/996814#996814 0 Answer by Magnetic_dud for Should I precompile ASP.NET 2.0 sites before deployment or not? Magnetic_dud 2009-06-15T15:38:26Z 2009-06-15T15:38:26Z <p>I upload files without precompiling: in this way, since my code is very buggy, i can correct it with Notepad++ directly from the server</p> <p>Also, Visual Web Developer 2008 (the free one) does not have the compiling option :-P</p> http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not/997125#997125 2 Answer by Rob Allen for Should I precompile ASP.NET 2.0 sites before deployment or not? Rob Allen 2009-06-15T16:45:29Z 2009-06-15T16:45:29Z <p>I disagree with most of the answers given to this point. There are many advantages to precompiling over ad-hoc posting of files, not the least of which is that the code in the production and testing environments stay more or less in sync. Pre-compiling makes it certain that the code you tested is the code going to production <em>every</em> time.</p> <p>The issue you are running into is not one of pre-compile versus first-run compile. Instead it stems from the type of source control you are using. If I had to guess (and I do), I would say you are running Visual SourceSafe. If you were to switch to a source control system that made branching and merging trivial then you could separate your code into <code>stable</code> and <code>development </code> branches. Bug fixes happen against the <code>stable</code> branch (which then get merged back to the <code>dev</code> branches. That way, untested or otherwise not-ready-for-prime-time code does not end up on the production server and you always have a copy of the <code>stable</code> set to work from. </p>