From 3447a3745a5b09dbc4c0dfab5ec252823497ddf0 Mon Sep 17 00:00:00 2001 From: "David W. Dougherty" Date: Thu, 17 Jul 2025 14:17:12 -0700 Subject: [PATCH] DEV/RS: fix broken redis-py URLs --- content/develop/ai/search-and-query/vectors.md | 2 +- content/develop/clients/redis-py/connect.md | 4 ++-- content/integrate/redisom-for-python/_index.md | 2 +- .../rs/7.4/databases/connect/test-client-connectivity.md | 2 +- .../rs/7.8/databases/connect/test-client-connectivity.md | 2 +- .../operate/rs/databases/connect/test-client-connectivity.md | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/content/develop/ai/search-and-query/vectors.md b/content/develop/ai/search-and-query/vectors.md index 0c9a590368..18ce729ab8 100644 --- a/content/develop/ai/search-and-query/vectors.md +++ b/content/develop/ai/search-and-query/vectors.md @@ -159,7 +159,7 @@ HSET docs:01 doc_embedding category sports Hash values are stored as binary-safe strings. The value `` represents the vector's underlying memory buffer. {{% /alert %}} -A common method for converting vectors to bytes uses the [redis-py](https://redis-py.readthedocs.io/en/stable/examples/search_vector_similarity_examples.html) client library and the Python [NumPy](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.tobytes.html) library. +A common method for converting vectors to bytes uses the [redis-py](https://redis.readthedocs.io/en/stable/examples/search_vector_similarity_examples.html) client library and the Python [NumPy](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.tobytes.html) library. **Example** diff --git a/content/develop/clients/redis-py/connect.md b/content/develop/clients/redis-py/connect.md index 0d6bbb6e1a..98767c6a3c 100644 --- a/content/develop/clients/redis-py/connect.md +++ b/content/develop/clients/redis-py/connect.md @@ -65,7 +65,7 @@ rc.set('foo', 'bar') rc.get('foo') # b'bar' ``` -For more information, see [redis-py Clustering](https://redis-py.readthedocs.io/en/stable/clustering.html). +For more information, see [redis-py Clustering](https://redis.readthedocs.io/en/stable/clustering.html). ## Connect to your production Redis with TLS @@ -89,7 +89,7 @@ r.set('foo', 'bar') r.get('foo') # b'bar' ``` -For more information, see [redis-py TLS examples](https://redis-py.readthedocs.io/en/stable/examples/ssl_connection_examples.html). +For more information, see [redis-py TLS examples](https://redis.readthedocs.io/en/stable/examples/ssl_connection_examples.html). ## Connect using client-side caching diff --git a/content/integrate/redisom-for-python/_index.md b/content/integrate/redisom-for-python/_index.md index 3d48114d3d..c420076f78 100644 --- a/content/integrate/redisom-for-python/_index.md +++ b/content/integrate/redisom-for-python/_index.md @@ -745,7 +745,7 @@ Using `redis-cli`, you can check that the person now has a TTL set with the Redi This shows that Redis will expire the key 584 seconds from now. -You can use the `.db()` function on your model class to get at the underlying redis-py connection whenever you want to run lower level Redis commands. For more details, see the [redis-py documentation](https://redis-py.readthedocs.io/en/stable/). +You can use the `.db()` function on your model class to get at the underlying redis-py connection whenever you want to run lower level Redis commands. For more details, see the [redis-py documentation](https://redis.readthedocs.io/en/stable/). ## Shutting Down Redis (Docker) diff --git a/content/operate/rs/7.4/databases/connect/test-client-connectivity.md b/content/operate/rs/7.4/databases/connect/test-client-connectivity.md index 30d4a25c94..25ddbdad9d 100644 --- a/content/operate/rs/7.4/databases/connect/test-client-connectivity.md +++ b/content/operate/rs/7.4/databases/connect/test-client-connectivity.md @@ -150,4 +150,4 @@ print(r.set('foo', 'bar')) print(r.get('foo')) ``` -For more `redis-py` connection examples, see the [`redis-py` developer documentation](https://redis-py.readthedocs.io/en/stable/examples/connection_examples.html). +For more `redis-py` connection examples, see the [`redis-py` developer documentation](https://redis.readthedocs.io/en/stable/examples/connection_examples.html). diff --git a/content/operate/rs/7.8/databases/connect/test-client-connectivity.md b/content/operate/rs/7.8/databases/connect/test-client-connectivity.md index 49d1804b5b..f79489c045 100644 --- a/content/operate/rs/7.8/databases/connect/test-client-connectivity.md +++ b/content/operate/rs/7.8/databases/connect/test-client-connectivity.md @@ -150,4 +150,4 @@ print(r.set('foo', 'bar')) print(r.get('foo')) ``` -For more `redis-py` connection examples, see the [`redis-py` developer documentation](https://redis-py.readthedocs.io/en/stable/examples/connection_examples.html). +For more `redis-py` connection examples, see the [`redis-py` developer documentation](https://redis.readthedocs.io/en/stable/examples/connection_examples.html). diff --git a/content/operate/rs/databases/connect/test-client-connectivity.md b/content/operate/rs/databases/connect/test-client-connectivity.md index 75f0649d6b..9d5ee2ccd8 100644 --- a/content/operate/rs/databases/connect/test-client-connectivity.md +++ b/content/operate/rs/databases/connect/test-client-connectivity.md @@ -149,4 +149,4 @@ print(r.set('foo', 'bar')) print(r.get('foo')) ``` -For more `redis-py` connection examples, see the [`redis-py` developer documentation](https://redis-py.readthedocs.io/en/stable/examples/connection_examples.html). +For more `redis-py` connection examples, see the [`redis-py` developer documentation](https://redis.readthedocs.io/en/stable/examples/connection_examples.html).