次の方法で共有


CacheSection.PrivateBytesLimit プロパティ

定義

ワーカー プロセスの専用領域の最大サイズを示す値を取得または設定します。

public:
 property long PrivateBytesLimit { long get(); void set(long value); };
[System.Configuration.ConfigurationProperty("privateBytesLimit", DefaultValue=0)]
[System.Configuration.LongValidator(MinValue=0)]
public long PrivateBytesLimit { get; set; }
[<System.Configuration.ConfigurationProperty("privateBytesLimit", DefaultValue=0)>]
[<System.Configuration.LongValidator(MinValue=0)>]
member this.PrivateBytesLimit : int64 with get, set
Public Property PrivateBytesLimit As Long

プロパティ値

Int64

ワーカー プロセスに割り当てられる専用領域の最大サイズ (バイト単位)。 既定値は 0 です。

属性

// Increase the PrivateBytesLimit property to 0.
cacheSection.PrivateBytesLimit = 
    cacheSection.PrivateBytesLimit + 10;
' Increase the PrivateBytesLimit property to 0.
cacheSection.PrivateBytesLimit = cacheSection.PrivateBytesLimit + 10

注釈

このプロパティは PrivateBytesLimit 、高圧条件のしきい値を指定します。 このしきい値に近づくと、キャッシュ システムは徐々に、より積極的な清掃対策を開始します。

適用対象

こちらもご覧ください