MemoryCache::Trim Method (Int32)
.NET Framework (current version)
Removes a specified percentage of cache entries from the cache object.
Assembly: System.Runtime.Caching (in System.Runtime.Caching.dll)
Parameters
- percent
-
Type:
System::Int32
The percentage of total cache entries to remove.
The Trim property first removes entries that have exceeded either an absolute or sliding expiration. Any callbacks that are registered for items that are removed will be passed a removed reason of Expired.
If removing expired entries is insufficient to reach the specified trim percentage, additional entries will be removed from the cache based on a least-recently used (LRU) algorithm until the requested trim percentage is reached. Any callbacks that are registered for items that are removed this way will be passed a remove reason of Evicted.
.NET Framework
Available since 4.0
Available since 4.0
Show: