From 5c8baeeb6dbd82fddd2bfa96d9f5575636b1385c Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Wed, 7 Feb 2018 19:05:43 -0600 Subject: [PATCH] Another version of the response caching sentence (#5387) --- aspnetcore/performance/caching/response.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/performance/caching/response.md b/aspnetcore/performance/caching/response.md index 5220015229..9565b358bd 100644 --- a/aspnetcore/performance/caching/response.md +++ b/aspnetcore/performance/caching/response.md @@ -63,7 +63,7 @@ For more information, see [Introduction to in-memory caching in ASP.NET Core](xr ### Distributed Cache -Use a distributed cache to store data in memory when the app is hosted in a cloud or server farm. The cache is shared across the servers that process requests. A client can submit a request that's handled by any server in the group and cached data for the client if available. ASP.NET Core offers SQL Server and Redis distributed caches. +Use a distributed cache to store data in memory when the app is hosted in a cloud or server farm. The cache is shared across the servers that process requests. A client can submit a request that's handled by any server in the group if cached data for the client is available. ASP.NET Core offers SQL Server and Redis distributed caches. For more information, see [Working with a distributed cache](xref:performance/caching/distributed).