Skip to content

Commit 3276992

Browse files
committed
fixed titles of sections, changed date
1 parent b636647 commit 3276992

File tree

4 files changed

+26
-15
lines changed

4 files changed

+26
-15
lines changed

articles/azure-cache-for-redis/cache-dotnet-core-quickstart.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: In this quickstart, learn how to access Azure Cache for Redis in yo
55
ms.devlang: csharp
66
ms.custom: devx-track-csharp, mvc, mode-other, devx-track-dotnet, ignite-2024
77
ms.topic: quickstart
8-
ms.date: 12/13/2024
8+
ms.date: 12/20/2024
99
zone_pivot_groups: redis-type
1010
#Customer intent: As a .NET developer, new to Azure Redis, I want to create a new Node.js app that uses Azure Managed Redis or Azure Cache for Redis.
1111
---
@@ -70,15 +70,17 @@ IDatabase Database = _newConnection.GetDatabase();
7070

7171
::: zone pivot="azure-managed-redis"
7272

73-
### To edit the _appsettings.json_ file
73+
### To edit the _appsettings.json_ file
7474

7575
1. Edit the _Web.config_ file. Then add the following content:
7676

7777
```json
7878
"_redisHostName":"<cache-hostname>"
7979
```
8080

81-
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview section of the Resource menu in the Azure portal. For example, _my-redis.eastus.azure.net:10000_.
81+
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview section of the Resource menu in the Azure portal.
82+
83+
For example, with Azure Managed Redis or the Enterprise tiers: _my-redis.eastus.azure.net:10000_
8284

8385
1. Save the file.
8486

@@ -90,13 +92,15 @@ For more information, see [StackExchange.Redis](https://stackexchange.github.io/
9092

9193
### To edit the _appsettings.json_ file
9294

93-
1. Edit the _Web.config_ file. Then add the following content:
95+
1. Edit the _appsettings.json_ file. Then add the following content:
9496

9597
```json
9698
"_redisHostName":"<cache-hostname>"
9799
```
98100

99-
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview section of the Resource menu in the Azure portal. For example, _my-redis.eastus.azure.net:10000_.
101+
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview section of the Resource menu in the Azure portal.
102+
103+
For example, with Azure Cache for Redis: _my-redis.eastus.azure.net:6380_
100104

101105
1. Save the file.
102106

articles/azure-cache-for-redis/cache-dotnet-how-to-use-azure-redis-cache.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: In this quickstart, learn how to access an Azure Redis cache from y
55
ms.devlang: csharp
66
ms.topic: quickstart
77
ms.custom: devx-track-csharp, mvc, mode-other, devx-track-dotnet, ignite-2024
8-
ms.date: 12/13/2024
8+
ms.date: 12/20/2024
99
zone_pivot_groups: redis-type
1010
#Customer intent: As a .NET developer, new to Azure Redis, I want to create a new Node.js app that uses Azure Managed Redis or Azure Cache for Redis.
1111
---
@@ -87,7 +87,9 @@ IDatabase Database = _newConnection.GetDatabase();
8787
</appSettings>
8888
```
8989

90-
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview from the Resource menu in Azure portal. For example, *my-redis.eastus.azure.net:10000*
90+
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview from the Resource menu in Azure portal.
91+
92+
For example, with Azure Managed Redis or the Enterprise tiers: _my-redis.eastus.azure.net:10000_
9193

9294
1. Save the file.
9395

@@ -109,7 +111,9 @@ For more information, see [StackExchange.Redis](https://stackexchange.github.io/
109111
</appSettings>
110112
```
111113

112-
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview from the Resource menu in Azure portal. For example, *my-redis.eastus.azure.net:6380*
114+
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview from the Resource menu in Azure portal.
115+
116+
For example, with Azure Cache for Redis: _my-redis.eastus.azure.net:6380_
113117

114118
1. Save the file.
115119

articles/azure-cache-for-redis/cache-web-app-aspnet-core-howto.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: In this quickstart, you learn how to create an ASP.NET Core web app
55
ms.devlang: csharp
66
ms.custom: devx-track-csharp, mvc, mode-other, ignite-2024
77
ms.topic: quickstart
8-
ms.date: 12/12/2024
8+
ms.date: 12/20/2024
99
zone_pivot_groups: redis-type
1010
#Customer intent: As an ASP.NET developer, new to Azure Redis, I want to create a new Node.js app that uses Azure Managed Redis or Azure Cache for Redis.
1111
---
@@ -84,7 +84,7 @@ dotnet add package Microsoft.Azure.StackExchangeRedis
8484

8585
### To edit the _appsettings.json_ file
8686

87-
1. Edit the _Web.config_ file. Then add the following content:
87+
1. Edit the _appsettings.json_ file. Then add the following content:
8888

8989
```json
9090
"_redisHostName":"<cache-hostname>"
@@ -104,7 +104,7 @@ For more information, see [StackExchange.Redis](https://stackexchange.github.io/
104104

105105
### To edit the _appsettings.json_ file
106106

107-
1. Edit the _Web.config_ file. Then add the following content:
107+
1. Edit the _appsettings.json_ file. Then add the following content:
108108

109109
```json
110110
"_redisHostName":"<cache-hostname>"
@@ -120,8 +120,6 @@ For more information, see [StackExchange.Redis](https://stackexchange.github.io/
120120
121121
::: zone-end
122122

123-
### To edit the _appsettings.json_ file
124-
125123
## Run the app locally
126124

127125
1. Execute the following command in your command window to build the app:

articles/azure-cache-for-redis/cache-web-app-howto.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ IDatabase Database = _newConnection.GetDatabase();
8181
</appSettings>
8282
```
8383

84-
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview on the Resource menu in Azure portal. For example, *my-redis.eastus.azure.net:10000*
84+
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview on the Resource menu in Azure portal.
85+
86+
For example, with Azure Managed Redis or the Enterprise tiers: _my-redis.eastus.azure.net:10000_
8587

8688
1. Save the file.
8789

@@ -103,11 +105,14 @@ For more information, see [StackExchange.Redis](https://stackexchange.github.io/
103105
</appSettings>
104106
```
105107

106-
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview on the Resource menu in Azure portal. For example, *my-redis.eastus.azure.net:10000*
108+
1. Replace `<cache-hostname>` with your cache host name as it appears in the Overview on the Resource menu in Azure portal.
109+
110+
For example with Azure Cache for Redis, *my-redis.eastus.azure.net:6380*
107111

108112
1. Save the file.
109113

110114
For more information, see [StackExchange.Redis](https://stackexchange.github.io/StackExchange.Redis/) and the code in a [GitHub repo](https://github.com/StackExchange/StackExchange.Redis).
115+
111116
::: zone-end
112117

113118
## Run the app locally

0 commit comments

Comments
 (0)