High CPU usage in Visual Studio 2013 and IIS

1

When we use Visual Studio 2013 for web development, we experience the following problems during debugging:

  • The web application takes a long time to load
  • Client scripts take a long time to load
  • The use of the CPU by the IIS work process increases enormously during the debugging of the application

Switching to local IIS does not solve these problems.

What's happening here?

    
asked by Pablo Claus 31.10.2016 в 13:10
source

1 answer

2

According to this site link

The Browser Link feature was added in VS 2013. This provides dynamic exchange between the IDE and any open browser on the machine. With the help of this function, you can test the changes on the page in different browsers on the fly, inspect HTML objects, etc. However, the use of this feature can cause the problems mentioned in the question during the debugging process.

Therefore, a common solution is to disable the Browser Link in Visual Studio:

    
answered by 31.10.2016 в 13:10