Skip to content

Commit 98ded2a

Browse files
committed
Fix relref errors
1 parent 95de6c9 commit 98ded2a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

content/develop/interact/programmability/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Redis provides a programming interface that lets you execute custom scripts on t
2323

2424
Redis is, by [definition](https://github.com/redis/redis/blob/unstable/MANIFESTO#L7), a _"domain-specific language for abstract data types"_.
2525
The language that Redis speaks consists of its [commands]({{< relref "/commands" >}}).
26-
Most the commands specialize at manipulating core [data types]({{< relref "/develop/data-types-intro" >}}) in different ways.
26+
Most the commands specialize at manipulating core [data types]({{< relref "/develop/data-types" >}}) in different ways.
2727
In many cases, these commands provide all the functionality that a developer requires for managing application data in Redis.
2828

2929
The term **programmability** in Redis means having the ability to execute arbitrary user-defined logic by the server.

content/glossary/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ More info: [redis.io/operate/oss_and_stack/management/security/acl]({{< relref "
2525
{{%definition "Active-Active database (CRDB)"%}}
2626
Geo-distributed databases that span multiple [Redis Enterprise Software]({{<relref "#redis-enterprise-software">}}) [clusters]({{<relref "#cluster">}}). Active-Active databases, also known as conflict-free replicated databases (CRDB), depend on [multi-master replication (MMR)]({{<relref "#multi-master-replication-mmr">}}) and [conflict-free replicated data types (CRDTs)]({{<relref "#conflict-free-replicated-data-types-crdt">}}) to power a simple development experience for geo-distributed applications.
2727

28-
More info: [Active-Active geo-distributed Redis]({{<relref "/operate/rs/databases/active-active">}}), [Geo-distributed Active-Active Redis applications]({{<relref "/operate/rs/databases/active-active/" >}}), [Developing applications for Active-Active databases]({{<relref "rs/databases/active-active/develop/_index">}})
28+
More info: [Active-Active geo-distributed Redis]({{<relref "/operate/rs/databases/active-active">}}), [Geo-distributed Active-Active Redis applications]({{<relref "/operate/rs/databases/active-active/" >}}), [Developing applications for Active-Active databases]({{<relref "rs/databases/active-active/develop/">}})
2929
{{%/definition%}}
3030

3131
{{%definition "Active-Active database instance"%}}

content/operate/oss_and_stack/management/optimization/memory-optimization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ To store user keys, Redis allocates at most as much memory as the `maxmemory`
238238
setting enables (however there are small extra allocations possible).
239239

240240
The exact value can be set in the configuration file or set later via
241-
[`CONFIG SET`](/commands/config-set) (for more info, see [Using memory as an LRU cache]({{< relref "/develop/reference/eviction/" >}})).
241+
[`CONFIG SET`](/commands/config-set) (for more info, see [Using memory as an LRU cache]({{< relref "/develop/reference/eviction" >}})).
242242
There are a few things that should be noted about how Redis manages memory:
243243

244244
* Redis will not always free up (return) memory to the OS when keys are removed.

0 commit comments

Comments
 (0)