How come when I run my website locally it's really fast but then when I published it; it runs really slow? Any idea?
|
|
|||||||||||||
|
|
|
Last time our web host was running slow, it turned out their admin had "accidentally" disabled keepalive. Without keepalive, browsers must open a new connection for every single request. |
||
|
|
|
|
This can have a lot of different reasons but some factors to look into are the webserver itself (are you hosting on a shared provider?), hardware goes with webserver -- is your dev machine a best and the production webserver slightly behind the times?, pre-compilation -- are you using the Website project or a Web Application Project; if the former, did you pre-compile it or are you leaving it to compile at runtime? Caching -- do you implement caching on heavily hit pages/data? If so, were you testing it against a limited set in development or was your development and live copy running with the same size and type of data? Debug vs. release mode; if your web.config is set to debug you'll experience a potentially drastic decrease in performance depending on the controls being used -- I've had some code/controls change it from milliseconds to several seconds and vice versa. |
||
|
|
|
|
er... define slow. Is a request taking too long to load? It's possible you are sending too much data per request. Does the first request after publishing take a long time, but subsequent requests are fast? This is normal ASP.NET behavior; it has to compile web pages server-side after publication, but it caches the result. Is it something else? I don't know what to tell you... I'll need more input. |
||
|
|
|
|
Did you set the debug=false in your web.config file? did you publish it under "debug" mode? If I recall correctly, these can have performance impacts. Also, what is your website doing that is "slow"? are you querying a database? can you add some more info so we can help? |
||||||
|
