Skip to content

Commit 46bdbe3

Browse files
Seungpangmp911de
authored andcommitted
Fix typo in reference documentation.
Closes #3018
1 parent 88693e5 commit 46bdbe3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/antora/modules/ROOT/pages/redis/cluster.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ b8b5ee... 127.0.0.1:7382 slave 6b38bb... 0 1449730618304 25 connected <
4444
4545
[source,java]
4646
----
47-
RedisClusterConnection connection = connectionFactory.getClusterConnnection();
47+
RedisClusterConnection connection = connectionFactory.getClusterConnection();
4848
4949
connection.set("thing1", value); <5>
5050
connection.set("thing2", value); <6>
@@ -88,7 +88,7 @@ [email protected]:7379 > cluster nodes
8888
8989
[source,java]
9090
----
91-
RedisClusterConnection connection = connectionFactory.getClusterConnnection();
91+
RedisClusterConnection connection = connectionFactory.getClusterConnection();
9292
9393
connection.set("thing1", value); // slot: 12182
9494
connection.set("{thing1}.thing2", value); // slot: 12182
@@ -134,5 +134,5 @@ clusterOps.shutdown(NODE_7379); <1>
134134
<1> Shut down node at 7379 and cross fingers there is a replica in place that can take over.
135135
====
136136

137-
NOTE: Redis Cluster pipelining is currently only supported throug the Lettuce driver except for the following commands when using cross-slot keys: `rename`, `renameNX`, `sort`, `bLPop`, `bRPop`, `rPopLPush`, `bRPopLPush`, `info`, `sMove`, `sInter`, `sInterStore`, `sUnion`, `sUnionStore`, `sDiff`, `sDiffStore`.
137+
NOTE: Redis Cluster pipelining is currently only supported through the Lettuce driver except for the following commands when using cross-slot keys: `rename`, `renameNX`, `sort`, `bLPop`, `bRPop`, `rPopLPush`, `bRPopLPush`, `info`, `sMove`, `sInter`, `sInterStore`, `sUnion`, `sUnionStore`, `sDiff`, `sDiffStore`.
138138
Same-slot keys are fully supported.

src/main/antora/modules/ROOT/pages/redis/redis-cache.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ It is possible to opt in to the locking behavior as follows:
4747

4848
[source,java]
4949
----
50-
RedisCacheManager cacheMangager = RedisCacheManager
50+
RedisCacheManager cacheManager = RedisCacheManager
5151
.build(RedisCacheWriter.lockingRedisCacheWriter(connectionFactory))
5252
.cacheDefaults(RedisCacheConfiguration.defaultCacheConfig())
5353
...

0 commit comments

Comments
 (0)