MemoryCache.PhysicalMemoryLimit Property

Definition

Gets the percentage of physical memory that the cache can use.

public long PhysicalMemoryLimit { get; }

Property Value

The percentage of physical memory that the cache can use.

Remarks

The PhysicalMemoryLimit property returns the percentage of total physical computer memory that can be used by a single instance of the MemoryCache class. If the cache instance exceeds the specified limit, cache entries are removed.

The settings for the PhysicalMemoryLimit property can be specified in the application configuration file. Alternatively, they can be passed by a caller when the MemoryCache class is initialized. For more information about how to configure this property, see <namedCaches> Element (Cache Settings). For more information about how to configure the property when the MemoryCache class is being initialized, see the MemoryCache.MemoryCache(String, NameValueCollection) method.

Applies to

Produkt Versjoner
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

See also