ASP.NET: Roslyn slow on page changes

半城伤御伤魂 提交于 2020-12-29 09:48:00

问题


i have an VB.NET ASP.NET (4.6.1) MVC Application which is build with the new Roslyn Compilers.

Everytime i change a (vbhtml) File and reload the page it takes approx 9 seconds to reload the page. In this time a vbc.exe and a VBCSCompiler.exe are running:

I couldn't find any hints for this slow performance (using ANTS Profile) and my System should be fast enough to handle the Requests much quicker (Windows 10 x64, i7-2600, 16GB RAM, Samsung SSD for all files).

i also tried the new Roslyn Builds, but nothing changed:

<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform"version="1.0.1" targetFramework="net452" />

Any Ideas, how i can get better reload times?

UPDATE1: When removing the package Microsoft.CodeDom.Providers.DotNetCompilerPlatform my page reload time goes down to <500ms!


回答1:


The new compiler takes several seconds to start since it needs to JIT many IL assemblies. Ngen'ing the compiler and its dependency assemblies would help reduce the starting time. What you can do is to find the compiler assembly and do

ngen.exe install VBCSCompiler.exe
ngen.exe install csc.exe
ngen.exe install vbc.exe

You would need to run the above commands from an elevated console. And you may need to use the 64-bit ngen.exe if your machine is 64-bit. Normally the 64-bit ngen.exe locates in C:\Windows\Microsoft.NET\Framework64\v4.0.30319.




回答2:


FYI, I've been working with Microsoft on a solution to this, and it as not as simple as NGENing the assemblies. There are two issues they are working on to address it, one of them is in the Roslyn compiler itself. You can track that bug here: https://github.com/dotnet/roslyn/issues/10413. If the other bug comes up on a public tracker, I will be sure to link to it.



来源:https://stackoverflow.com/questions/35184818/asp-net-roslyn-slow-on-page-changes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!