博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net 4.0 IIS7.0/7.5环境提供了自动预热功能(程序池自动重启)
阅读量:5811 次
发布时间:2019-06-18

本文共 382 字,大约阅读时间需要 1 分钟。

打开IIS 7.5的applicationHost.config文件(C:\Windows\System32\inetsrv\config\applicationHost.config),在<applicationPools>中加一个 startMode=”AlwaysRunning”属性:

<applicationPools>

<add name="appname" managedRuntimeVersion="v4.0" startMode="AlwaysRunning" />

</applicationPools>

 

其中appname为站点在IIS应用程序池中的名字(id)

 

IIS 8.0可以在IIS管理工具中直接设置,详见:

 

文章来源:

转载于:https://www.cnblogs.com/qxoffice2008/p/4094123.html

你可能感兴趣的文章