Skip to content

Commit 6d3c89b

Browse files
committed
edits
1 parent 56306eb commit 6d3c89b

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

articles/redis/java-get-started.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Quickstart: Use Azure Cache for Redis in Java"
3-
description: In this quickstart, you create a new Java app that uses Azure Cache for Redis
2+
title: "Quickstart: Use Azure Managed Redis in Java"
3+
description: In this quickstart, you create a new Java app that uses Azure Managed Redis
44
author: KarlErickson
55
ms.author: karler
66
ms.reviewer: zhihaoguo
@@ -21,9 +21,9 @@ ms.devlang: java
2121
zone_pivot_groups: redis-type
2222
---
2323

24-
# Quickstart: Use Azure Cache for Redis in Java with Jedis Redis client
24+
# Quickstart: Use Azure Managed Redis in Java with Jedis Redis client
2525

26-
In this quickstart, you incorporate Azure Cache for Redis into a Java app using the [Jedis](https://github.com/xetorthio/jedis) Redis client. Your cache is a secure, dedicated cache that is accessible from any application within Azure.
26+
In this quickstart, you incorporate Azure Managed Redis into a Java app using the [Jedis](https://github.com/xetorthio/jedis) Redis client. Your cache is a secure, dedicated cache that is accessible from any application within Azure.
2727

2828
## Skip to the code on GitHub
2929

@@ -76,7 +76,7 @@ Clone the repo [Java quickstart](https://github.com/Azure-Samples/azure-cache-re
7676

7777

7878
> [!NOTE]
79-
> Microsoft has entered into a partnership with Redis, Inc. As part of this collaboration, Microsoft Entra ID authentication support has been moved from Azure SDK to Redis Entra ID extensions. The new `redis-authx-entraid` library provides enhanced authentication capabilities and is the recommended approach for Microsoft Entra ID authentication with Azure Cache for Redis.
79+
> Microsoft has entered into a partnership with Redis, Inc. As part of this collaboration, Microsoft Entra ID authentication support has been moved from Azure SDK to Redis Entra ID extensions. The new `redis-authx-entraid` library provides enhanced authentication capabilities and is the recommended approach for Microsoft Entra ID authentication with Azure Managed Redis.
8080

8181
```xml
8282
<dependency>
@@ -122,7 +122,7 @@ Clone the repo [Java quickstart](https://github.com/Azure-Samples/azure-cache-re
122122
{
123123
String REDIS_CACHE_HOSTNAME = System.getenv("REDIS_CACHE_HOSTNAME");
124124
int REDIS_PORT = Integer.parseInt(System.getenv().getOrDefault("REDIS_CACHE_PORT", "10000"));
125-
String SCOPES = "https://redis.azure.com/.default"; // The scope for Azure Cache for Redis
125+
String SCOPES = "https://redis.azure.com/.default"; // The scope for Azure Managed Redis
126126

127127
// Build TokenAuthConfig for Microsoft Entra ID authentication
128128
TokenAuthConfig tokenAuthConfig = AzureTokenAuthConfigBuilder.builder()
@@ -165,7 +165,7 @@ Clone the repo [Java quickstart](https://github.com/Azure-Samples/azure-cache-re
165165

166166
---
167167

168-
This code shows you how to connect to an Azure Cache for Redis instance using the cache host name and key environment variables. The code also stores and retrieves a string value in the cache. The `PING` commands are also executed.
168+
This code shows you how to connect to an Azure Managed Redis instance using the cache host name and key environment variables. The code also stores and retrieves a string value in the cache. The `PING` commands are also executed.
169169

170170
1. Close the **App.java** file.
171171

@@ -198,9 +198,9 @@ Cache Response : Hello! The cache is working from Java!
198198

199199
## Next steps
200200

201-
In this quickstart, you learned how to use Azure Cache for Redis from a Java application. Continue to the next quickstart to use Azure Cache for Redis with an ASP.NET web app.
201+
In this quickstart, you learned how to use Azure Managed Redis from a Java application.
202202

203203
- [Development](best-practices-development.md)
204204
- [Connection resilience](best-practices-connection.md)
205-
- [Azure Cache for Redis with Jakarta EE](/azure/developer/java/ee/how-to-deploy-java-liberty-jcache)
206-
- [Azure Cache for Redis with Spring](/azure/developer/java/spring-framework/configure-spring-boot-initializer-java-app-with-redis-cache)
205+
- [Using Azure Redis as session cache for WebSphere Liberty or Open Liberty](/azure/developer/java/ee/how-to-deploy-java-liberty-jcache)
206+
- [Use Azure Redis Cache in Spring](/azure/developer/java/spring-framework/configure-spring-boot-initializer-java-app-with-redis-cache)

0 commit comments

Comments
 (0)