Skip to content

Commit 3fda70f

Browse files
committed
Final edits
1 parent 0a1006a commit 3fda70f

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

articles/azure-cache-for-redis/cache-aspnetcore-output-cache-provider.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: cache
77
ms.devlang: csharp
88
ms.custom: devx-track-csharp
99
ms.topic: how-to
10-
ms.date: 06/13/2024
10+
ms.date: 06/14/2024
1111

1212
#customer intent: As a cloud developer, I want to understand core output caching via Azure Cache for Redis so that I can implement it for storing page output.
1313
---
@@ -24,16 +24,6 @@ The benefits of using Azure Cache for Redis as your output cache include:
2424
- Saving web server memory resource utilization by storing cached content in an external Redis database.
2525
- Improving web application resiliency by persisting cached content in an external Redis database in the scenario of server failover or restart.
2626

27-
Using the Redis option for output caching provides performance and storage optimizations over custom implementations of other output caching providers.
28-
29-
<!-- PM input needed: original text - "The Redis output caching implementation includes performance and storage optimizations comparing with custom implementations of the Output Caching middleware providers."
30-
31-
What I think it means: Using the Redis option for output caching provides performance and storage optimizations over custom implementations of other output caching providers.
32-
33-
This almost sounds a bit to much like marketing and maybe we should omit it. Will it always be true? Do we have benchmarks that quantitatively show this? Or am I missing the real technical advantage?
34-
35-
-->
36-
3727
You can use the output caching middleware in all types of ASP.NET Core apps: minimal API, web API with controllers, Model-View-Controller (MVC), and Razor Pages. For a detailed walkthrough of output caching syntax and features, see [Output caching middleware in ASP.NET Core](/aspnet/core/performance/caching/output).
3828

3929
## Prerequisites
@@ -140,7 +130,7 @@ It's a security best practice to avoid storing passwords in clear text in source
140130
141131
1. Obtain the Azure Cache for Redis connection strings by using the Azure portal.
142132
143-
You can find the connection string for Redis OSS by selecting **Authentication** on the **Resource** menu. Here's an example string: `<Azure_redis_name>.redis.cache.windows.net:6380,password=<Azure_redis_primary_accesskey>,ssl=True,abortConnect=False`.
133+
You can find the connection string for open source Redis tiers by selecting **Authentication** on the **Resource** menu. Here's an example string: `<Azure_redis_name>.redis.cache.windows.net:6380,password=<Azure_redis_primary_accesskey>,ssl=True,abortConnect=False`.
144134
145135
You can find the access keys for Redis Enterprise by selecting **Access keys** on the **Resource** menu. The connection string can be derived with other Redis information from the **Overview** section of the **Resource** menu. Here's an example string: `<Azure_redis_name>.<Azure_region>.redisenterprise.cache.azure.net:10000,password=<Azure_redis_primary_accesskey>,ssl=True,abortConnect=False`.
146136

0 commit comments

Comments
 (0)