We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43827c8 commit f0d0236Copy full SHA for f0d0236
src/main/java/redis/clients/jedis/RedisClusterClient.java
@@ -22,16 +22,13 @@
22
* <p>
23
* <b>Usage:</b>
24
*
25
- * <pre>
26
- * {
27
- * @code
+ * <pre>{@code
28
* Set<HostAndPort> clusterNodes = new HashSet<>();
29
* clusterNodes.add(new HostAndPort("127.0.0.1", 7000));
30
* RedisClusterClient client = new RedisClusterClient(clusterNodes);
31
* client.set("key", "value");
32
* String value = client.get("key");
33
- * }
34
- * </pre>
+ * }</pre>
35
36
* <b>Migration:</b> Users of {@code JedisCluster} are encouraged to migrate to this class for
37
* improved API consistency, better resource management, and enhanced support for future Redis
0 commit comments