From 3755ffea5bda26fedaffd5e21615ba02811ceb6d Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Fri, 2 Dec 2022 11:07:46 -0800 Subject: [PATCH] Add note about IDistributedCache (#27816) --- aspnetcore/performance/caching/output.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/performance/caching/output.md b/aspnetcore/performance/caching/output.md index a8e8e7bfde..80cf5fb29a 100644 --- a/aspnetcore/performance/caching/output.md +++ b/aspnetcore/performance/caching/output.md @@ -157,7 +157,7 @@ The following properties of is used for storage. By default it's used with . We don't recommend for use with output caching. + is used for storage. By default it's used with . We don't recommend for use with output caching. `IDistributedCache` doesn't have atomic features, which are required for tagging. We recommend that you create custom implementations by using direct dependencies on the underlying storage mechanism, such as Redis. ## See also