Skip to content

Commit 64437a0

Browse files
DOC-4543 fixed remaining broken links
1 parent 96063b6 commit 64437a0

File tree

42 files changed

+68
-68
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+68
-68
lines changed

content/apis/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Redis comes with a wide range of commands that help you to develop real-time app
1818

1919
As a developer, you will likely use one of our supported client libraries for connecting and executing commands.
2020

21-
- [Connect with Redis clients introduction]({{< relref "/develop/connect/clients/" >}})
21+
- [Connect with Redis clients introduction]({{< relref "/develop/clients" >}})
2222

2323
### Programmability APIs
2424

content/commands/client-getredir/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ syntax_str: ''
3131
title: CLIENT GETREDIR
3232
---
3333
This command returns the client ID we are redirecting our
34-
[tracking]({{< relref "/develop/connect/clients/client-side-caching#tracking" >}}) notifications to. We set a client
34+
[tracking]({{< relref "/develop/clients/client-side-caching#tracking" >}}) notifications to. We set a client
3535
to redirect to when using [`CLIENT TRACKING`]({{< relref "/commands/client-tracking" >}}) to enable tracking. However in
3636
order to avoid forcing client libraries implementations to remember the
3737
ID notifications are redirected to, this command exists in order to improve

content/commands/client-tracking/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ syntax_str: "[REDIRECT\_client-id] [PREFIX\_prefix [PREFIX prefix ...]] [BCAST]
7575
title: CLIENT TRACKING
7676
---
7777
This command enables the tracking feature of the Redis server, that is used
78-
for [server assisted client side caching]({{< relref "/develop/connect/clients/client-side-caching#tracking" >}}).
78+
for [server assisted client side caching]({{< relref "/develop/clients/client-side-caching#tracking" >}}).
7979

8080
When tracking is enabled Redis remembers the keys that the connection
8181
requested, in order to send later invalidation messages when such keys are

content/develop/clients/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ for six main languages:
3333
| [PHP](https://www.php.net/)| [`Predis`](https://github.com/predis/predis) | [PHP guide]({{< relref "/develop/clients/php" >}}) | No |
3434

3535
We also provide several higher-level
36-
[object mapping (OM)]({{< relref "/develop/connect/clients/om-clients" >}})
36+
[object mapping (OM)]({{< relref "/develop/clients/om-clients" >}})
3737
libraries for [Python]({{< relref "/integrate/redisom-for-python" >}}),
3838
[C#/.NET]({{< relref "/integrate/redisom-for-net" >}}),
3939
[Node.js]({{< relref "/integrate/redisom-for-node-js" >}}), and
@@ -59,4 +59,4 @@ You can experiment with a local installation of Redis Stack
5959
(see [Install Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack/" >}})) or with a free trial of [Redis Cloud]({{< relref "/operate/rc" >}}).
6060
To interact with a Redis server without writing code, use the
6161
[Redis CLI]({{< relref "/develop/tools/cli" >}}) and
62-
[Redis Insight]({{< relref "/develop/connect/insight" >}}) tools.
62+
[Redis Insight]({{< relref "/develop/tools/insight" >}}) tools.

content/develop/data-types/timeseries/clients.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The table below shows the client libraries that support Redis time series:
2121

2222
| Language | Client |
2323
| :-- | :-- |
24-
| Python | [redis-py]({{< relref "/develop/connect/clients/python" >}}) |
24+
| Python | [redis-py]({{< relref "/develop/clients/redis-py" >}}) |
2525
| JavaScript | [node-redis]({{< relref "/develop/clients/nodejs" >}}) |
2626
| Java | [Jedis]({{< relref "/develop/clients/jedis" >}}) |
2727
| C#/.NET | [NRedisStack]({{< relref "/develop/clients/dotnet" >}}) |

content/develop/get-started/data-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You can alternatively follow the [installation guides]({{< relref "/operate/oss_
3737

3838
## Connect
3939

40-
The first step is to connect to Redis. You can find further details about the connection options in this documentation site's [connection section]({{< relref "/develop/connect" >}}). The following example shows how to connect to a Redis server that runs on localhost (`-h 127.0.0.1`) and listens on the default port (`-p 6379`):
40+
The first step is to connect to Redis. You can find further details about the connection options in this documentation site's [Tools section]({{< relref "/develop/tools" >}}). The following example shows how to connect to a Redis server that runs on localhost (`-h 127.0.0.1`) and listens on the default port (`-p 6379`):
4141

4242
{{< clients-example search_quickstart connect >}}
4343
> redis-cli -h 127.0.0.1 -p 6379

content/develop/get-started/document-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ You can alternatively use the [installation guides]({{< relref "/operate/oss_and
5151

5252
## Connect
5353

54-
The first step is to connect to your Redis Stack database. You can find further details about the connection options in this documentation site's [connection section]({{< relref "/develop/connect" >}}). The following example shows how to connect to a Redis Stack server that runs on localhost (`-h 127.0.0.1`) and listens on the default port (`-p 6379`):
54+
The first step is to connect to your Redis Stack database. You can find further details about the connection options in this documentation site's [Tools section]({{< relref "/develop/tools" >}}). The following example shows how to connect to a Redis Stack server that runs on localhost (`-h 127.0.0.1`) and listens on the default port (`-p 6379`):
5555

5656
{{< clients-example search_quickstart connect >}}
5757
> redis-cli -h 127.0.0.1 -p 6379

content/develop/get-started/vector-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ You need to have the following features configured for your Redis server: JSON a
6060

6161
Create a Python virtual environment and install the following dependencies using `pip`:
6262

63-
* `redis`: You can find further details about the `redis-py` client library in the [clients]({{< relref "/develop/connect/clients/python" >}}) section of this documentation site.
63+
* `redis`: You can find further details about the `redis-py` client library in the [clients]({{< relref "/develop/clients/redis-py" >}}) section of this documentation site.
6464
* `pandas`: Pandas is a data analysis library.
6565
* `sentence-transformers`: You will use the [SentenceTransformers](https://www.sbert.net/) framework to generate embeddings on full text.
6666
* `tabulate`: `pandas` uses `tabulate` to render Markdown.

content/develop/interact/search-and-query/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Here are the next steps to get you started:
4040
1. Follow our [quick start guide]({{< relref "/develop/get-started/document-database" >}}) to get some initial hands-on experience.
4141
1. Learn how to [create an index]({{< relref "/develop/interact/search-and-query/indexing/" >}}).
4242
1. Learn how to [query your data]({{< relref "/develop/interact/search-and-query/query/" >}}).
43-
1. [Install Redis Insight]({{< relref "/operate/redisinsight" >}}), connect it to your Redis database, and then use [Redis Copilot]({{< relref "/develop/connect/insight" >}}#redis-copilot) to help you learn how to execute complex queries against your own data using simple, plain language prompts.
43+
1. [Install Redis Insight]({{< relref "/operate/redisinsight" >}}), connect it to your Redis database, and then use [Redis Copilot]({{< relref "/develop/tools/insight" >}}#redis-copilot) to help you learn how to execute complex queries against your own data using simple, plain language prompts.
4444

4545

4646
## Enable the Redis Query Engine

content/develop/tools/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The [Redis command line interface]({{< relref "/develop/tools/cli" >}}) (also kn
3232

3333
## Redis Insight
3434

35-
[Redis Insight]({{< relref "/develop/connect/insight" >}}) combines a graphical user interface with Redis CLI to let you work with any Redis deployment. You can visually browse and interact with data, take advantage of diagnostic tools, learn by example, and much more. Best of all, Redis Insight is free.
35+
[Redis Insight]({{< relref "/develop/tools/insight" >}}) combines a graphical user interface with Redis CLI to let you work with any Redis deployment. You can visually browse and interact with data, take advantage of diagnostic tools, learn by example, and much more. Best of all, Redis Insight is free.
3636

3737
## Redis VSCode extension
3838

0 commit comments

Comments
 (0)