ASP.NET MVC 4 Website Speed โ€‹โ€‹Issues

We have just finished creating a website for a client in MVC 4, the site has been deployed online too, but now the client complains about serious slow loading times. We cannot reproduce the problem by browsing the same site on our machines.

To start investigating the problem, we connected a new Relic to our server and are tracking the application, and this is what we see:

enter image description here

In WebTransaction, there is a massive response time of 57.900 ms, the problem is that we have no idea what exactly is happening in this web transaction and how to solve it.

Has anyone ever seen this? How can we solve this problem with huge load times?

Thanks,

+7
asp.net-mvc-4 newrelic
source share
1 answer

There are many ways to optimize your mvc site. The most common problem is the type list variable. when we access the data that we use in the data list, we perform some operations and then send them to the controller. Instead, if we use data of the Queryable type, then we work, and then send the data to the controller, then it will be faster than the previous one.

0
source share

All Articles