Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Website optimization / decrease loading time in asp.net mvc 3

I have built a test website using nopCommerce open source , Everything is working fine , i need to know , why my website loading time is greater than 6 sec , the homepage works fine but the categories when clicked takes like 6-10 secs. how can i check the http request and calls to db so that i can track which function is taking a long times.

Test website is test website Thanks

like image 221
Mr A Avatar asked Feb 22 '23 03:02

Mr A


1 Answers

Things I would try in that order:

  • MvcMiniProfiler.
  • Analyze my code for possible performance bottlenecks using a .NET profiler.
  • Finally submit bugs to the nopCommerce support if the previous approaches didn't yield anything fruitful that would put my code into cause.

In between I might also checkout with my hosting provider whether he is not the cause of the slowness.

like image 145
Darin Dimitrov Avatar answered Mar 02 '23 18:03

Darin Dimitrov