Skip to content

Commit 50d4d1e

Browse files
docs: fix broken links to RESP3 specification
Signed-off-by: Björn Petersen <[email protected]>
1 parent 0075b28 commit 50d4d1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/resp3_features.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
RESP 3 Features
22
===============
33

4-
valkey-py supports the `RESP 3 standard <https://github.com/valkey/valkey-specifications/blob/master/protocol/RESP3.md>`_. Practically, this means that client using RESP 3 will be faster and more performant as fewer type translations occur in the client. It also means new response types like doubles, true simple strings, maps, and booleans are available.
4+
valkey-py supports the `RESP 3 standard <https://github.com/redis/redis-specifications/blob/master/protocol/RESP3.md>`_. Practically, this means that client using RESP 3 will be faster and more performant as fewer type translations occur in the client. It also means new response types like doubles, true simple strings, maps, and booleans are available.
55

66
Connecting
77
-----------
@@ -51,7 +51,7 @@ Connecting to an OSS Valkey Cluster with RESP 3
5151
Push notifications
5252
------------------
5353

54-
Push notifications are a way that valkey sends out of band data. The RESP 3 protocol includes a `push type <https://github.com/valkey/valkey-specifications/blob/master/protocol/RESP3.md#push-type>`_ that allows our client to intercept these out of band messages. By default, clients will log simple messages, but valkey-py includes the ability to bring your own function processor.
54+
Push notifications are a way that valkey sends out of band data. The RESP 3 protocol includes a `push type <https://github.com/redis/redis-specifications/blob/master/protocol/RESP3.md#push-type>`_ that allows our client to intercept these out of band messages. By default, clients will log simple messages, but valkey-py includes the ability to bring your own function processor.
5555

5656
This means that should you want to perform something, on a given push notification, you specify a function during the connection, as per this examples:
5757

0 commit comments

Comments
 (0)