Another version of the response caching sentence (#5387)

pull/5388/head
Luke Latham 2018-02-07 19:05:43 -06:00 committed by Rick Anderson
parent 291f477c56
commit 5c8baeeb6d
1 changed files with 1 additions and 1 deletions

View File

@ -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).