共用方式為


ProcessModelSection.MaxIOThreads 屬性

定義

取得或設定值,表示 CLR 執行緒集區中每個 CPU 之 I/O 執行緒的最大數目。

public:
 property int MaxIOThreads { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxIoThreads", DefaultValue=20)]
[System.Configuration.IntegerValidator(MaxValue=2147483646, MinValue=1)]
public int MaxIOThreads { get; set; }
[<System.Configuration.ConfigurationProperty("maxIoThreads", DefaultValue=20)>]
[<System.Configuration.IntegerValidator(MaxValue=2147483646, MinValue=1)>]
member this.MaxIOThreads : int with get, set
Public Property MaxIOThreads As Integer

屬性值

Int32

執行緒的最大數目。 預設值為 20。

屬性

範例

下列程式碼範例示範如何存取 MaxIOThreads 屬性。


 // Get the current MaxIOThreads property value.
int maxIOThreads = 
    processModelSection.MaxIOThreads;

 // Set the MaxIOThreads property to 64.
 processModelSection.MaxIOThreads = 64;
' Get the current MaxIOThreads property value.
   Dim maxIOThreads As Integer = _
   processModelSection.MaxIOThreads

' Set the MaxIOThreads property to 64.
processModelSection.MaxIOThreads = 64

備註

的值 MaxIOThreads 必須等於或大於 MinFreeThreads 組態區段中的 httpRuntime 設定。

您可以分別使用 MaxWorkerThreads 屬性和 MaxIOThreads 屬性來設定背景工作執行緒和 I/O 執行緒的數目,以控制 CPU 使用率。

這兩種執行緒類型之間的差異在於後者系結至 I/O 物件,例如資料流程或管道,而前者是傳統不受限制的執行緒。 針對 Internet Information Services (IIS) 6.0 版和更新版本,ASP.NET 處理背景工作執行緒上的要求。 這是因為 ASP.NET 整合在 IIS 中。

這些執行緒是從屬於應用程式的全進程 CLR 執行緒集區取得。

注意

允許執行緒的預設值通常足以保持 CPU 使用率高。 如果您的應用程式因為某些原因而變慢,或許正在等候外部資源,您可以嘗試將執行緒數目增加為小於 100 的值。

適用於

另請參閱