Skip to content

Commit 8668f92

Browse files
jichang-leemp911de
authored andcommitted
Fix broken links in Redis reference documentation.
Signed-off-by: jichangLee <jccc23@naver.com> Closes #3409
1 parent 43543a5 commit 8668f92

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ The following overview explains features that are supported by the individual Re
4747
| X
4848
| X
4949

50-
| xref:redis.adoc#redis:write-to-master-read-from-replica[Master/Replica Connections]
50+
| xref:redis/connection-modes.adoc#redis:write-to-master-read-from-replica[Master/Replica Connections]
5151
| X
5252
|
5353

54-
| xref:redis.adoc#redis:sentinel[Redis Sentinel]
54+
| xref:redis/connection-modes.adoc#redis:sentinel[Redis Sentinel]
5555
| Master Lookup, Sentinel Authentication, Replica Reads
5656
| Master Lookup
5757

src/main/antora/modules/ROOT/pages/redis/hash-mappers.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Ideally, JSON can be stored as a value by using plain keys.
66
You can achieve a more sophisticated mapping of structured objects by using Redis hashes.
77
Spring Data Redis offers various strategies for mapping data to hashes (depending on the use case):
88

9-
* Direct mapping, by using javadoc:org.springframework.data.redis.core.HashOperations[] and a xref:redis.adoc#redis:serializer[serializer]
9+
* Direct mapping, by using javadoc:org.springframework.data.redis.core.HashOperations[] and a xref:redis/template.adoc#redis:serializer[serializer]
1010
* Using xref:repositories.adoc[Redis Repositories]
1111
* Using javadoc:org.springframework.data.redis.hash.HashMapper[] and javadoc:org.springframework.data.redis.core.HashOperations[]
1212

src/main/antora/modules/ROOT/pages/redis/pubsub-receiving.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To change the subscription of a connection or query whether it is listening, `Re
1111
NOTE: Subscription commands in Spring Data Redis are blocking.
1212
That is, calling subscribe on a connection causes the current thread to block as it starts waiting for messages.
1313
The thread is released only if the subscription is canceled, which happens when another thread invokes `unsubscribe` or `pUnsubscribe` on the *same* connection.
14-
See "`xref:redis/pubsub.adoc#redis:pubsub:subscribe:containers[Message Listener Containers]`" (later in this document) for a solution to this problem.
14+
See "`xref:redis/pubsub-receiving.adoc#container[Message Listener Containers]`" (later in this document) for a solution to this problem.
1515

1616
As mentioned earlier, once subscribed, a connection starts waiting for messages.
1717
Only commands that add new subscriptions, modify existing subscriptions, and cancel existing subscriptions are allowed.

0 commit comments

Comments
 (0)