Skip to content

Commit 46d364f

Browse files
DOC-3967 fixed links to keyspace page
1 parent bbd1b4c commit 46d364f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

content/commands/scan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ Also note that this behavior is specific of [`SSCAN`]({{< relref "/commands/ssca
286286

287287
## Further reading
288288

289-
For more information about managing keys, please refer to the [The Redis Keyspace]({{< relref "/develop/use/keyspace" >}}) tutorial.
289+
For more information about managing keys, please refer to the [The Redis Keyspace]({{< relref "/develop/keyspace" >}}) tutorial.
290290

291291
## Additional examples
292292

content/develop/ai/search-and-query/best-practices/index-mgmt-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Monitoring and troubleshooting aliases:
150150
## Index maintenance
151151
152152
- If schema changes are required, create a new index with the updated schema and reassign the alias once the index is ready.
153-
- Use [Redis key expiration]({{< relref "/develop/use/keyspace#key-expiration" >}}) to automatically remove outdated records and keep indexes lean.
153+
- Use [Redis key expiration]({{< relref "/develop/keyspace#key-expiration" >}}) to automatically remove outdated records and keep indexes lean.
154154
155155
### FT.ALTER vs. aliasing
156156

content/develop/data-types/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ categories:
1010
- kubernetes
1111
- clients
1212
description: Overview of data types supported by Redis
13-
linkTitle: Understand data types
14-
title: Understand Redis data types
13+
linkTitle: Data types
14+
title: Redis data types
1515
hideListLinks: true
1616
weight: 35
1717
---

content/develop/data-types/hashes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ See the [complete list of hash commands]({{< relref "/commands/" >}}?group=hash)
101101
## Field expiration
102102

103103
New in Redis Open Source 7.4 is the ability to specify an expiration time or a time-to-live (TTL) value for individual hash fields.
104-
This capability is comparable to [key expiration]({{< relref "/develop/use/keyspace#key-expiration" >}}) and includes a number of similar commands.
104+
This capability is comparable to [key expiration]({{< relref "/develop/keyspace#key-expiration" >}}) and includes a number of similar commands.
105105

106106
Use the following commands to set either an exact expiration time or a TTL value for specific fields:
107107

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ You can get a complete overview of available data types in this documentation si
8282

8383
## Scan the keyspace
8484

85-
Each item within Redis has a unique key. All items live within the Redis [keyspace]({{< relref "/develop/use/keyspace" >}}). You can scan the Redis keyspace via the [SCAN command]({{< relref "/commands/scan" >}}). Here is an example that scans for the first 100 keys that have the prefix `bike:`:
85+
Each item within Redis has a unique key. All items live within the Redis [keyspace]({{< relref "/develop/keyspace" >}}). You can scan the Redis keyspace via the [SCAN command]({{< relref "/commands/scan" >}}). Here is an example that scans for the first 100 keys that have the prefix `bike:`:
8686

8787
```
8888
SCAN 0 MATCH "bike:*" COUNT 100

0 commit comments

Comments
 (0)