You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xml/System.Runtime.Caching.Configuration/MemoryCacheElement.xml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -170,13 +170,13 @@
170
170
<ReturnType>System.Int32</ReturnType>
171
171
</ReturnValue>
172
172
<Docs>
173
-
<summary>Gets or sets the percentage of server memory that can be used by the cache.</summary>
174
-
<value>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 <seecref="T:System.Runtime.Caching.MemoryCache" /> instances manage their own memory based on the amount of memory that is installed on the computer.</value>
173
+
<summary>Gets or sets the percentage of total system physical memory usage at which the cache will begin evicting entries.</summary>
174
+
<value>The percentage of physical memory in use, expressed as an integer value from 1 to 100. The default is zero, which indicates that <seecref="T:System.Runtime.Caching.MemoryCache" /> instances manage their own memory based on the amount of memory that is installed on the computer.</value>
175
175
<remarks>
176
176
<formattype="text/markdown"><![CDATA[
177
177
178
178
## Remarks
179
-
If the cache size exceeds the specified limit, the memory cache implementation removes cache entries.
179
+
If the total amount of physical memory in use on the system exceeds the specified limit, the memory cache implementation removes cache entries.
180
180
181
181
The setting for the <xref:System.Runtime.Caching.MemoryCache.PhysicalMemoryLimit%2A> property can be read from `physicalMemoryLimitPercentage` configuration attribute in the application configuration file. Alternatively, the value can be passed when the <xref:System.Runtime.Caching.MemoryCache> class is initialized.
0 commit comments