다음을 통해 공유


CacheSection.PercentagePhysicalMemoryUsedLimit 속성

정의

가상 메모리 사용량의 최대 비율을 나타내는 값을 가져오거나 설정합니다.

public:
 property int PercentagePhysicalMemoryUsedLimit { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("percentagePhysicalMemoryUsedLimit", DefaultValue=0)]
[System.Configuration.IntegerValidator(MaxValue=100, MinValue=0)]
public int PercentagePhysicalMemoryUsedLimit { get; set; }
[<System.Configuration.ConfigurationProperty("percentagePhysicalMemoryUsedLimit", DefaultValue=0)>]
[<System.Configuration.IntegerValidator(MaxValue=100, MinValue=0)>]
member this.PercentagePhysicalMemoryUsedLimit : int with get, set
Public Property PercentagePhysicalMemoryUsedLimit As Integer

속성 값

가상 메모리 사용량의 최대 백분율입니다. 기본값은 90%.

특성

예제

// Increase memory limit.
cacheSection.PercentagePhysicalMemoryUsedLimit = 
    cacheSection.PercentagePhysicalMemoryUsedLimit + 1;
' Increase memory limit.
cacheSection.PercentagePhysicalMemoryUsedLimit =
    cacheSection.PercentagePhysicalMemoryUsedLimit + 1

설명

이 속성은 PercentagePhysicalMemoryUsedLimit 고압 조건에 대한 임계값을 지정합니다. 이 임계값에 가까워지면 캐시 시스템은 점점 더 공격적인 청소 조치를 시작합니다.

적용 대상

추가 정보