Skip to content

Commit acd66a7

Browse files
committed
acrolinx fixes
1 parent 669a1ad commit acd66a7

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

articles/azure-cache-for-redis/cache-best-practices-client-libraries.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ ms.date: 02/06/2025
88
ms.custom: devx-track-java, devx-track-javaee, devx-track-javaee-liberty, devx-track-javaee-liberty-aks, devx-track-extended-java, ignite-2024
99
---
1010

11-
12-
1311
# Client libraries
1412

1513
Azure Cache for Redis is based on the popular open-source in-memory data store, open-source Redis. Azure Cache for Redis can be accessed by a wide variety of Redis clients for many programming languages. Each client library has its own API that makes calls to Redis server using Redis commands, but the client libraries are built to talk to any Redis server.

articles/azure-cache-for-redis/managed-redis/managed-redis-best-practices-client-libraries.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ ms.custom: devx-track-java, devx-track-javaee, devx-track-javaee-liberty, devx-t
1010

1111
# Azure Managed Redis (preview) Client libraries
1212

13-
Azure Managed Redis (preview) is based on the popular in-memory data store, Redis. Azure Managed Redis can be accessed by a wide variety of Redis clients for many programming languages. Each client library has its own API that makes calls to Redis server using Redis commands, but the client libraries are built to talk to any Redis server.
13+
Azure Managed Redis (preview) is based on the popular in-memory data store, Redis. Redis clients for many programming languages can access Azure Managed Redis. Each client library has its own API that makes calls to Redis server using Redis commands, but the client libraries are built to talk to any Redis server.
1414

1515
Each client library maintains its own reference documentation. The libraries also provide links to get support through the client library developer community. The Azure Managed Redis team doesn't own the development, or the support for any client libraries.
1616

17-
Recommendations below are based on popularity and whether there's an active online community to support and answer your questions. We only recommend using the latest available version, and upgrading regularly as new versions become available. These libraries are under active development and often release new versions with improvements to reliability and performance.
17+
The following recommendations are based on popularity and whether there's an active online community to support and answer your questions. We only recommend using the latest available version, and upgrading regularly as new versions become available. These libraries are under active development and often release new versions with improvements to reliability and performance.
1818

1919
| **Client library** | **Language** | **GitHub** **repo** | **Documentation** |
2020
|---------------------------|--------------|---------------------------------------------------------------------|--------------------------------------------------------------------------------------|
@@ -31,12 +31,12 @@ Recommendations below are based on popularity and whether there's an active onli
3131
## Choosing the right client library based on your clustering policy
3232

3333
Azure Managed Redis supports the Enterprise clustering policy and the OSS clustering policy. See more information here (add link to clustering policy information).
34-
All client libraries work with your Redis instance with Enterprise clustering policy. However, if you are using the OSS clustering policy, ensure that the client library you choose supports connecting to clustered Redis instances.
34+
35+
All client libraries work with your Redis instance with Enterprise clustering policy. However, if you're using the OSS clustering policy, ensure that the client library you choose supports connecting to clustered Redis instances.
3536

3637
## Blocked commands
3738

38-
Configuration and management of Azure Managed Redis instances is managed by Microsoft, which disables the following commands by default.
39-
For more information on blocked commands, see [Cluster management commands compatibility](https://redis.io/docs/latest/operate/rs/references/compatibility/commands/cluster/)
39+
Microsoft manages the configuration and management of Azure Managed Redis instances, which disables the following commands by default. For more information on blocked commands, see [Cluster management commands compatibility](https://redis.io/docs/latest/operate/rs/references/compatibility/commands/cluster/)
4040

4141
### Multi-key commands
4242

@@ -78,9 +78,9 @@ We _recommend_ you use redisson 3.14.1 or higher. Older versions contain known
7878

7979
Other notes:
8080

81-
- Redisson defaults to 'read from replica' strategy, unlike some other clients. To change this, modify the 'readMode' config setting.
81+
- Redisson defaults to 'read from replica' strategy, unlike some other clients. To change this default, modify the 'readMode' config setting.
8282
- Redisson has a connection pooling strategy with configurable minimum and maximum settings, and the default minimum values are large. The large defaults could contribute to aggressive reconnect behaviors or 'connection storms'. To reduce the risk, consider using fewer connections because you can efficiently pipeline commands, or batches of commands, over a few connections.
83-
- Redisson has a default idle connection timeout of 10 seconds, which leads to more closing and reopening of connections than ideal.
83+
- Redisson has a default idle connection time-out of 10 seconds, which leads to more closing and reopening of connections than ideal.
8484

8585
Here's a recommended baseline configuration for cluster mode that you can modify as needed:
8686

@@ -113,7 +113,7 @@ clusterServersConfig:
113113
tcpNoDelay: true
114114
```
115115
116-
For an article demonstrating how to use Redisson's support for JCache as the store for HTTP session state in IBM Liberty on Azure, see [Use Java EE JCache with Open Liberty or WebSphere Liberty on an Azure Kubernetes Service (AKS) cluster](/azure/developer/java/ee/how-to-deploy-java-liberty-jcache).
116+
For an article about Redisson's support for JCache as the store for HTTP session state in IBM Liberty on Azure, see [Use Java EE JCache with Open Liberty or WebSphere Liberty on an Azure Kubernetes Service (AKS) cluster](/azure/developer/java/ee/how-to-deploy-java-liberty-jcache).
117117
118118
## How to use client libraries
119119

0 commit comments

Comments
 (0)