Skip to content

Commit 4df37df

Browse files
committed
edit pass: integrate-azure-cache-for-redis-with-service-connector
1 parent 3f44e2f commit 4df37df

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

articles/service-connector/how-to-integrate-redis-cache.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 02/02/2024
1010

1111
# Integrate Azure Cache for Redis with Service Connector
1212

13-
You can connect Azure Cache for Redis to other cloud services by using Service Connector. This article outlines supported authentication methods and clients, and provides sample code. It also reveals default environment variable names and values (or Spring Boot configuration) you get when you create the service connection. (Note that you might still be able to connect to Azure Cache for Redis in other programming languages without using Service Connector.)
13+
You can connect Azure Cache for Redis to other cloud services by using Service Connector. This article outlines supported authentication methods and clients, and provides sample code. It also reveals default environment variable names and values (or Spring Boot configuration) you get when you create the service connection. (You might still be able to connect to Azure Cache for Redis in other programming languages without using Service Connector.)
1414

1515
## Supported compute services
1616

@@ -24,7 +24,7 @@ You can use Service Connector to connect the following compute services to Azure
2424

2525
## Supported authentication and client types
2626

27-
The following table shows which combinations of authentication methods and clients are supported for connecting your compute service to Azure Cache for Redis by using Service Connector. "Yes" means that the combination is supported, while "No" means that it isn't supported.
27+
The following table shows which combinations of authentication methods and clients are supported for connecting your compute service to Azure Cache for Redis by using Service Connector. "Yes" means that the combination is supported. "No" means that it isn't supported.
2828

2929
| Client type | System-assigned managed identity | User-assigned managed identity | Secret / connection string | Service principal |
3030
|--------------------|----------------------------------|--------------------------------|----------------------------|-------------------|
@@ -36,11 +36,11 @@ The following table shows which combinations of authentication methods and clien
3636
| Python | Yes | Yes | Yes | Yes |
3737
| None | Yes | Yes | Yes | Yes |
3838

39-
All client types, except for Go and Java - Spring Boot, can use any of the authentication methods referenced in the table to connect to Azure Cache for Redis using Service Connector. The only supported authentication methods for Go and Java - Spring Boot are secret / connection string or service principal.
39+
All client types, except for Go and Java - Spring Boot, can use any of the authentication methods referenced in the table to connect to Azure Cache for Redis by using Service Connector. The only supported authentication methods for Go and Java - Spring Boot are secret / connection string or service principal.
4040

4141
## Default environment variable names or application properties and sample code
4242

43-
Use the following environment variable names and application properties to connect compute services to your Redis server. For each example, replace the placeholders `<redis-server-name>`, and `<redis-key>` with your own Redis server name and key. Check the [Service Connector internals](concept-service-connector-internals.md#configuration-naming-convention) article to learn more about naming conventions.
43+
Use the following environment variable names and application properties to connect compute services to your Redis server. For each example, replace the placeholders `<redis-server-name>` and `<redis-key>` with your own Redis server name and key. To learn more about naming conventions, check the [Service Connector internals](concept-service-connector-internals.md#configuration-naming-convention) article.
4444

4545
### System-assigned managed identity
4646

@@ -68,13 +68,13 @@ The following steps and code show you how to use a user-assigned managed identit
6868
### Connection string
6969

7070
> [!WARNING]
71-
> We recommend that you use the most secure authentication flow available. The authentication flow described here requires a very high degree of trust in the application, and carries risks that aren't present in other flows. You should only use this flow when more secure flows, such as managed identities, aren't viable.
71+
> We recommend that you use the most secure authentication flow available. The authentication flow described here requires a very high degree of trust in the application, and carries risks that aren't present in other flows. You should use this flow only when more secure flows, such as managed identities, aren't viable.
7272
7373
#### [.NET](#tab/dotnet)
7474

7575
| Default environment variable name | Description | Example value |
7676
| --------------------------------- | -------------------------------------- | ---------------------------------------------------------------------------------------------------- |
77-
| AZURE_REDIS_CONNECTIONSTRING | `StackExchange.Redis` connection string | `<redis-server-name>.redis.cache.windows.net:6380,password=<redis-key>,ssl=True,defaultDatabase=0` |
77+
| `AZURE_REDIS_CONNECTIONSTRING` | `StackExchange.Redis` connection string | `<redis-server-name>.redis.cache.windows.net:6380,password=<redis-key>,ssl=True,defaultDatabase=0` |
7878

7979
#### [Java](#tab/java)
8080

@@ -141,9 +141,6 @@ The following steps and code show you how to use a connection string to connect
141141
The following steps and code show you how to use a service principal to connect to Redis.
142142
[!INCLUDE [code sample for Redis](./includes/code-redis-me-id.md)]
143143

144-
## Next step
144+
## Related content
145145

146-
Read the following tutorial to learn more about Service Connector.
147-
148-
> [!div class="nextstepaction"]
149-
> [Learn about Service Connector concepts](./concept-service-connector-internals.md)
146+
* [Learn about Service Connector concepts](./concept-service-connector-internals.md)

0 commit comments

Comments
 (0)