IIS 7.5 Application Initialization for ASP.NET web service (warmup) without remapping requests

后端 未结 1 1066
走了就别回头了
走了就别回头了 2020-12-30 01:22

I\'m trying to use the IIS 7.5 Application Initialization extension to configure a warmup process for my web application. This is an approach I am taking to minimize slow do

相关标签:
1条回答
  • 2020-12-30 02:28

    I think I answered my own question. I removed the skipManagedModules attribute and it worked. This code accomplishes application initialization, and during warmup, requests seem to wait for it to complete before being processed:

    <applicationInitialization>
        <add initializationPage="/" />
    </applicationInitialization>
    

    I couldn't find any documentation for why it behaves this way and don't really understand what skipManagedModules means. If anyone can further explain this, I can mark the explanation as an answer. Thanks!

    0 讨论(0)
提交回复
热议问题