質問

競合を減らすためにIISを調整し、.NETの多くの記事に従うことを試みています。

 <system.web>
     ...
    <httpRuntime minFreeThreads="8" minLocalRequestFreeThreads="4" ... />
     ....
    <processModel maxWorkerThreads="20" maxIoThreads="20" ... />
      ....
 </.system.web>
.

は、上記の設定を含むmachine.configファイルを指定しないことは通常どれですか?

役に立ちましたか?

解決

Certainly - if they're not present then the default values will be used.

The default value for minFreeThreads is the same as you're setting , 8, and the default for minLocalRequestFreeThreads is 4.

maxWorkerThreads has a default value of 20 as does maxIoThreads.

So setting those will make no difference unless someone has set them in the machine.config to lower calues.

他のヒント

Yep. If they're not explicitly stated, the defaults will be used as specified here

http://support.microsoft.com/kb/821268 The one and the only one you need.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top