I have a big performance problem in my website when I deploy new code.
I have many views in my website. After deploying new version of code, the first call to my main page take 5 minutes (vs 2 seconds in normal time). When i use a web analyzer like dynatrace
i see that i have an application lock. For example : I have this schema :
When i look to the stack details, i saw that i have a lock on these methods :
ViewResultBase.ExecuteResult
BuildManager.CompileWebFile
ViewResult.FindView
RazorView.RenderView
Is that a problem with my views compilation ?
Thank you for your help and your advices.