vote up -3 vote down star

How come when I run my website locally it's really fast but then when I published it; it runs really slow? Any idea?

flag

68% accept rate
4  
We can only do wild guesses with this little info. Server is slow(busy ? Network is slow ? Any SQL server is slow ? – nos Aug 10 at 20:37
This could use some more information. Where are you publishing it to? Another server? Is it using the same database server you use locally? Some details would help here. – thinkzig Aug 10 at 20:37
Did you deploy in Debug mode or release mode? – Brandon Aug 10 at 20:38
Agreed, more information about your setup is required for us to assist you, because what you say is totally not the case for all the applications – bashmohandes Aug 10 at 20:39
i'm publishing it to a different server, I am not using the database server. Do you guys have any input on how can I make it faster and btw we only have 13 ppl using the website. – Yonita Aug 10 at 20:40

closed as not a real question by nos, marc_s, Martin, redsquare, gnovice Aug 10 at 20:48

4 Answers

vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

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?

link|flag
Yes I am I have tons of sp from sql server. debug = true – Yonita Aug 10 at 20:41
1  
set debug=false and see if that helps the speed at all. are you using MSSQL? if so, do you have MS sql server 2005 (you can get the express edition for free: microsoft.com/Sqlserver/2005/…)? Connect to your database with this application, and see if your connections and queries take time. you could also create test pages that do not have any SQL commands on them and see if they take a long time to load too. – Anders Aug 10 at 20:46

Not the answer you're looking for? Browse other questions tagged or ask your own question.