From 00dbc12bd76a50b8a11eae6d9c76200d8d5a67f0 Mon Sep 17 00:00:00 2001 From: Steve Molloy Date: Mon, 16 Jun 2025 01:28:46 -0700 Subject: [PATCH] Update docs for SRC.MemoryCache configuration element (#11448) --- .../MemoryCacheElement.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xml/System.Runtime.Caching.Configuration/MemoryCacheElement.xml b/xml/System.Runtime.Caching.Configuration/MemoryCacheElement.xml index 55f1d511c83..c5e6ec30902 100644 --- a/xml/System.Runtime.Caching.Configuration/MemoryCacheElement.xml +++ b/xml/System.Runtime.Caching.Configuration/MemoryCacheElement.xml @@ -170,13 +170,13 @@ System.Int32 - Gets or sets the percentage of server memory that can be used by the cache. - The percentage of physical memory that the cache can use, expressed as an integer value from 1 to 100. The default is zero, which indicates that instances manage their own memory based on the amount of memory that is installed on the computer. + Gets or sets the percentage of total system physical memory usage at which the cache will begin evicting entries. + The percentage of physical memory in use, expressed as an integer value from 1 to 100. The default is zero, which indicates that instances manage their own memory based on the amount of memory that is installed on the computer. property can be read from `physicalMemoryLimitPercentage` configuration attribute in the application configuration file. Alternatively, the value can be passed when the class is initialized.