From 1f3bd67173934b96f70d0ee29f63dec59cdecd93 Mon Sep 17 00:00:00 2001 From: Brandon Dahler Date: Mon, 14 Oct 2019 23:10:32 -0400 Subject: [PATCH] [MemoryCache] Nit - Clarify cache size limit (#15047) Replaces all instances of "[cache] memory size [limit]" with "cache size limit" where appropriate. --- aspnetcore/performance/caching/memory.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aspnetcore/performance/caching/memory.md b/aspnetcore/performance/caching/memory.md index fcd9f42cdd..f22ddb2050 100644 --- a/aspnetcore/performance/caching/memory.md +++ b/aspnetcore/performance/caching/memory.md @@ -101,7 +101,7 @@ The following sample: ## Use SetSize, Size, and SizeLimit to limit cache size -A `MemoryCache` instance may optionally specify and enforce a size limit. The memory size limit does not have a defined unit of measure because the cache has no mechanism to measure the size of entries. If the cache memory size limit is set, all entries must specify size. The ASP.NET Core runtime does not limit cache size based on memory pressure. It's up to the developer to limit cache size. The size specified is in units the developer chooses. +A `MemoryCache` instance may optionally specify and enforce a size limit. The cache size limit does not have a defined unit of measure because the cache has no mechanism to measure the size of entries. If the cache size limit is set, all entries must specify size. The ASP.NET Core runtime does not limit cache size based on memory pressure. It's up to the developer to limit cache size. The size specified is in units the developer chooses. For example: @@ -117,7 +117,7 @@ The following code creates a unitless fixed size