Skip to content

Commit f1748da

Browse files
authored
docs: fix some broken links (#928)
This fixes all broken links that start with `redis.io/docs/manual/`.
1 parent b0177b2 commit f1748da

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ Once a command is built, use either `client.Do()` or `client.DoMulti()` to send
6666

6767
To reuse a command, use `Pin()` after `Build()` and it will prevent the command from being recycled.
6868

69-
## [Pipelining](https://redis.io/docs/manual/pipelining/)
69+
## [Pipelining](https://redis.io/docs/latest/develop/using-commands/pipelining/)
7070

7171
### Auto Pipelining
7272

7373
All concurrent non-blocking redis commands (such as `GET`, `SET`) are automatically pipelined by default,
7474
which reduces the overall round trips and system calls and gets higher throughput. You can easily get the benefit
75-
of [pipelining technique](https://redis.io/docs/manual/pipelining/) by just calling `client.Do()` from multiple goroutines concurrently.
75+
of [pipelining technique](https://redis.io/docs/latest/develop/using-commands/pipelining/) by just calling `client.Do()` from multiple goroutines concurrently.
7676
For example:
7777

7878
```go

rueidisaside/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# rueidisaside
22

3-
A Cache-Aside pattern implementation enhanced by [Client Side Caching](https://redis.io/docs/manual/client-side-caching/).
3+
A Cache-Aside pattern implementation enhanced by [Client Side Caching](https://redis.io/docs/latest/develop/reference/client-side-caching/).
44

55
## Features backed by the Redis Client Side Caching
66

rueidislock/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# rueidislock
22

3-
A [Redis Distributed Lock Pattern](https://redis.io/docs/latest/develop/use/patterns/distributed-locks/) enhanced by [Client Side Caching](https://redis.io/docs/manual/client-side-caching/).
3+
A [Redis Distributed Lock Pattern](https://redis.io/docs/latest/develop/use/patterns/distributed-locks/) enhanced by [Client Side Caching](https://redis.io/docs/latest/develop/reference/client-side-caching/).
44

55
```go
66
package main

0 commit comments

Comments
 (0)