Orchard Performance on Azure

前端 未结 2 1888
南笙
南笙 2020-12-31 20:57

Using http://docs.orchardproject.net/Documentation/Deploying-Orchard-to-Windows-Azure I\'ve successfully deployed Orchard into Azure.

After every 20mins or so withou

2条回答
  •  不知归路
    2020-12-31 21:22

    You're right about the app pool recycle - the default idle timeout is 20 minutes. If you set this to 0 (infinite), you won't see the pause after 20 minutes of inactivity.

    Steve Marx blogged about how to do this. It involves a startup task calling an elevated command script that sets app pool timeout:

    %windir%\system32\inetsrv\appcmd set config -section:applicationPools -applicationPoolDefaults.processModel.idleTimeout:00:00:00
    

提交回复
热议问题