Skip to content

Commit a3cd67a

Browse files
DOC-3967 moved pub/sub and keyspace notification pages
1 parent 1f03dab commit a3cd67a

File tree

28 files changed

+37
-137
lines changed

28 files changed

+37
-137
lines changed

content/commands/cluster-info.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ Here are the explanation of these fields:
6666
* `cluster_stats_messages_pong_sent` and `cluster_stats_messages_pong_received`: PONG (reply to PING).
6767
* `cluster_stats_messages_meet_sent` and `cluster_stats_messages_meet_received`: Handshake message sent to a new node, either through gossip or [`CLUSTER MEET`]({{< relref "/commands/cluster-meet" >}}).
6868
* `cluster_stats_messages_fail_sent` and `cluster_stats_messages_fail_received`: Mark node xxx as failing.
69-
* `cluster_stats_messages_publish_sent` and `cluster_stats_messages_publish_received`: Pub/Sub Publish propagation, see [Pubsub]({{< relref "/develop/interact/pubsub#pubsub" >}}).
69+
* `cluster_stats_messages_publish_sent` and `cluster_stats_messages_publish_received`: Pub/Sub Publish propagation, see [Pubsub]({{< relref "/develop/pubsub#pubsub" >}}).
7070
* `cluster_stats_messages_auth-req_sent` and `cluster_stats_messages_auth-req_received`: Replica initiated leader election to replace its master.
7171
* `cluster_stats_messages_auth-ack_sent` and `cluster_stats_messages_auth-ack_received`: Message indicating a vote during leader election.
7272
* `cluster_stats_messages_update_sent` and `cluster_stats_messages_update_received`: Another node slots configuration.
7373
* `cluster_stats_messages_mfstart_sent` and `cluster_stats_messages_mfstart_received`: Pause clients for manual failover.
7474
* `cluster_stats_messages_module_sent` and `cluster_stats_messages_module_received`: Module cluster API message.
75-
* `cluster_stats_messages_publishshard_sent` and `cluster_stats_messages_publishshard_received`: Pub/Sub Publish shard propagation, see [Sharded Pubsub]({{< relref "/develop/interact/pubsub#sharded-pubsub" >}}).
75+
* `cluster_stats_messages_publishshard_sent` and `cluster_stats_messages_publishshard_received`: Pub/Sub Publish shard propagation, see [Sharded Pubsub]({{< relref "/develop/pubsub#sharded-pubsub" >}}).
7676

7777
More information about the Current Epoch and Config Epoch variables are available in the [Redis Cluster specification document]({{< relref "/operate/oss_and_stack/reference/cluster-spec#cluster-current-epoch" >}}).
7878

content/commands/command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Command flags are an array. It can contain the following simple strings (status
103103
* **no_mandatory_keys:** the command may accept key name arguments, but these aren't mandatory.
104104
* **no_multi:** the command isn't allowed inside the context of a [transaction]({{< relref "/develop/reference/transactions" >}}).
105105
* **noscript:** the command can't be called from [scripts]({{< relref "/develop/programmability/eval-intro" >}}) or [functions]({{< relref "/develop/programmability/functions-intro" >}}).
106-
* **pubsub:** the command is related to [Redis Pub/Sub]({{< relref "/develop/interact/pubsub" >}}).
106+
* **pubsub:** the command is related to [Redis Pub/Sub]({{< relref "/develop/pubsub" >}}).
107107
* **random**: the command returns random results, which is a concern with verbatim script replication.
108108
As of Redis 7.0, this flag is a [command tip][tb].
109109
* **readonly:** the command doesn't modify data.

content/commands/psubscribe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Use `\` to escape special characters if you want to match them verbatim.
4747
Once the client enters the subscribed state it is not supposed to issue any other commands, except for additional [`SUBSCRIBE`]({{< relref "/commands/subscribe" >}}), [`SSUBSCRIBE`]({{< relref "/commands/ssubscribe" >}}), `PSUBSCRIBE`, [`UNSUBSCRIBE`]({{< relref "/commands/unsubscribe" >}}), [`SUNSUBSCRIBE`]({{< relref "/commands/sunsubscribe" >}}), [`PUNSUBSCRIBE`]({{< relref "/commands/punsubscribe" >}}), [`PING`]({{< relref "/commands/ping" >}}), [`RESET`]({{< relref "/commands/reset" >}}) and [`QUIT`]({{< relref "/commands/quit" >}}) commands.
4848
However, if RESP3 is used (see [`HELLO`]({{< relref "/commands/hello" >}})) it is possible for a client to issue any commands while in subscribed state.
4949

50-
For more information, see [Pub/sub]({{< relref "/develop/interact/pubsub" >}}).
50+
For more information, see [Pub/sub]({{< relref "/develop/pubsub" >}}).
5151

5252
## Behavior change history
5353

content/commands/spublish.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ In Redis Cluster, shard channels are assigned to slots by the same algorithm use
5555
A shard message must be sent to a node that owns the slot the shard channel is hashed to.
5656
The cluster makes sure that published shard messages are forwarded to all the nodes in the shard, so clients can subscribe to a shard channel by connecting to any one of the nodes in the shard.
5757

58-
For more information about sharded pubsub, see [Sharded Pubsub]({{< relref "/develop/interact/pubsub#sharded-pubsub" >}}).
58+
For more information about sharded pubsub, see [Sharded Pubsub]({{< relref "/develop/pubsub#sharded-pubsub" >}}).
5959

6060
## Examples
6161

content/commands/ssubscribe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Client(s) can subscribe to a node covering a slot (primary/replica) to receive t
5353
All the specified shard channels needs to belong to a single slot to subscribe in a given `SSUBSCRIBE` call,
5454
A client can subscribe to channels across different slots over separate `SSUBSCRIBE` call.
5555

56-
For more information about sharded Pub/Sub, see [Sharded Pub/Sub]({{< relref "/develop/interact/pubsub#sharded-pubsub" >}}).
56+
For more information about sharded Pub/Sub, see [Sharded Pub/Sub]({{< relref "/develop/pubsub#sharded-pubsub" >}}).
5757

5858
## Examples
5959

content/commands/subscribe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ other commands, except for additional `SUBSCRIBE`, [`SSUBSCRIBE`]({{< relref "/c
4141
[`PUNSUBSCRIBE`]({{< relref "/commands/punsubscribe" >}}), [`PING`]({{< relref "/commands/ping" >}}), [`RESET`]({{< relref "/commands/reset" >}}) and [`QUIT`]({{< relref "/commands/quit" >}}) commands.
4242
However, if RESP3 is used (see [`HELLO`]({{< relref "/commands/hello" >}})) it is possible for a client to issue any commands while in subscribed state.
4343

44-
For more information, see [Pub/sub]({{< relref "/develop/interact/pubsub" >}}).
44+
For more information, see [Pub/sub]({{< relref "/develop/pubsub" >}}).
4545

4646
## Behavior change history
4747

content/commands/sunsubscribe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In this case a message for every unsubscribed shard channel will be sent to the
5454

5555
Note: The global channels and shard channels needs to be unsubscribed from separately.
5656

57-
For more information about sharded Pub/Sub, see [Sharded Pub/Sub]({{< relref "/develop/interact/pubsub#sharded-pubsub" >}}).
57+
For more information about sharded Pub/Sub, see [Sharded Pub/Sub]({{< relref "/develop/pubsub#sharded-pubsub" >}}).
5858

5959
## Return information
6060

content/develop/clients/nodejs/amr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ console.log(`Database size is ${size}`);
340340
If you are using the
341341
[RESP2]({{< relref "/develop/reference/protocol-spec#resp-versions" >}})
342342
protocol, you should
343-
be aware that [pub/sub]({{< relref "/develop/interact/pubsub" >}}) can
343+
be aware that [pub/sub]({{< relref "/develop/pubsub" >}}) can
344344
cause complications with reauthentication.
345345

346346
After a connection enters PUB/SUB mode, the socket is blocked and can't process

content/develop/clients/nodejs/connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ related to connection:
344344
- `reconnecting`: (No parameters) The client is about to try reconnecting after the
345345
connection was lost due to an error.
346346
- `sharded-channel-moved`: The cluster slot of a subscribed
347-
[sharded pub/sub channel]({{< relref "/develop/interact/pubsub#sharded-pubsub" >}})
347+
[sharded pub/sub channel]({{< relref "/develop/pubsub#sharded-pubsub" >}})
348348
has been moved to another shard. Note that when you use a
349349
[`RedisCluster`](#connect-to-a-redis-cluster) connection, this event is automatically
350350
handled for you. See

content/develop/clients/nodejs/migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ for await (const keys of client.scanIterator()) {
321321

322322
`ioredis` reports incoming pub/sub messages with a `message`
323323
event on the client object (see
324-
[Publish/subscribe]({{< relref "/develop/interact/pubsub" >}}) for more
324+
[Publish/subscribe]({{< relref "/develop/pubsub" >}}) for more
325325
information about messages):
326326

327327
```js

0 commit comments

Comments
 (0)