I have a web application written in ASP.Net 3.0 using C#, the production machine is a windows server 2003 with IIS 6.0 and sql server 2005.
Application Structure
The following shows the structure of my ASP.net web application:
root application in IIS (//localhost/es) includes the common pages, for instance: master pages, theme, user control, images folder. number of sub-projects under the root application (//localhost/es/sub-project). delete web.config in sub-projects assemble files of sub-projects is under bin folder of root application (sub-project properties >> compile >> build output path: ..\bin\ my application is a 3–tier web application(Biasness layer ,Data layer and Presentation layer. Also, every aspx page has its code behind cs file)
IIS Settings
Application pool
Recycling Worker Process after "1740 in minutes"
Idle timeout worker processes after being idle "20 in minutes"
Ping worker process every "30 seconds"
Startup time limit for worker processer "90 Seconds"
Shoutdown time limit for worker processer "90 Seconds"
Application Configuration
Cache limited ASP files in memory "500"
Cache limited ASP files on disk "2000"
Deploying Application:
I publish the web application with all its files to production server.
The Problem :
The application runs pretty slow at the first time, it takes upwards 10 seconds to load, however every at the next time a page is requested it's be faster. I believe that the first time a page is requested, it compiles and it usually takes more time than the other requesting, because the page is in the Cache Memory. The question here is why it's take along time when compiling the page at first time?
Attempts to solve the Issue :
I tried to do the following :
However, the application still starts of slow but then it gets faster.
Please help to diagnose and solve this problem.
The first time you load a page, its files are compiled. Thus, if you have complex server-side logic, the first compilation may take a while - it's so the called warm-up period.
There can be numerous reasons why . NET applications can be slow. These include incorrect memory sizing, GC pauses, code-level errors, excessive logging of exceptions, high usage of synchronized blocks, IIS server bottlenecks, and so on.
In addition to what sky said, you could run a "warmup script" as the last step of your deployment process. Although this won't speed up the time needed for the first compilation, using such a script would at least prevent users seeing a slow startup. Have a look here for an example of such a script: http://programmerramblings.blogspot.com/2008/09/aspnet-site-warmup.html
Another reason why the very first request to your application is slow could be that IIS has to start the asp.net worker process during the very first request. This should however not affect first requests to other pages.
publish the website, which precompiles, as opposed to copying it.
The behavior you are experiencing is normal.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With