CacheSection.PrivateBytesLimit 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示工作进程私有空间的最大大小。
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
属性值
为工作进程分配的私有空间的最大大小(以字节为单位)。 默认值为 0。
- 属性
示例
// Increase the PrivateBytesLimit property to 0.
cacheSection.PrivateBytesLimit =
cacheSection.PrivateBytesLimit + 10;
' Increase the PrivateBytesLimit property to 0.
cacheSection.PrivateBytesLimit = cacheSection.PrivateBytesLimit + 10
注解
属性 PrivateBytesLimit 指定高压条件的阈值。 随着此阈值的临近,缓存系统逐渐开始更积极的清理措施。