次の方法で共有


ProcessModelSection.RequestQueueLimit プロパティ

定義

キューに置くことができる要求数を示す値を取得または設定します。

public:
 property int RequestQueueLimit { int get(); void set(int value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))]
[System.Configuration.ConfigurationProperty("requestQueueLimit", DefaultValue=5000)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int RequestQueueLimit { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))>]
[<System.Configuration.ConfigurationProperty("requestQueueLimit", DefaultValue=5000)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.RequestQueueLimit : int with get, set
Public Property RequestQueueLimit As Integer

プロパティ値

キューに置くことができる要求数。 既定値は 5000 です。

属性

次のコード例は、RequestQueueLimit プロパティの使用方法を示しています。


// Get the current RequestQueueLimit property value.
int requestQueueLimit =
    processModelSection.RequestQueueLimit;

// Set the RequestQueueLimit property to 10240.
processModelSection.RequestQueueLimit = 10240;
' Get the current RequestQueueLimit property value.
   Dim requestQueueLimit As Integer = _
   processModelSection.RequestQueueLimit

' Set the RequestQueueLimit property to 10240.
processModelSection.RequestQueueLimit = 10240

注釈

キューで許可されている要求の数を超えた場合、ASP.NET は新しい要求に "503 - サーバーがビジー状態" エラーを返し始めます。 この制限に達すると、システムは異常な状態で動作しています。 これは、誤動作の症状であるか、単に高負荷である可能性があります。 ワーカー プロセスの再起動 (バウンス) が、それ以上の問題を防ぐ唯一の方法になる可能性があります。

適用対象