Skip to content

Commit 74ea418

Browse files
committed
DOC-5393 RS: Fixed typos and links in develop Active-Active Redis apps docs
1 parent 920a8b1 commit 74ea418

File tree

6 files changed

+33
-33
lines changed

6 files changed

+33
-33
lines changed

content/operate/rs/7.4/databases/active-active/develop/_index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ of events under geo-failovers and cross-region write conflicts. In Redis Enterpr
1919
simplify developing such applications by directly using built-in smarts
2020
for handling conflicting writes based on the data type in use. Instead
2121
of depending on just simplistic "last-writer-wins" type conflict
22-
resolution, geo-distributed Active-Active databases (formerly known as CRDBs) combines techniques defined in CRDT
22+
resolution, geo-distributed Active-Active databases (formerly known as CRDBs) combine techniques defined in CRDT
2323
(conflict-free replicated data types) research with Redis types to
24-
provide smart and automatic conflict resolution based on the data types
24+
provide smart and automatic conflict resolution based on the data type's
2525
intent.
2626

2727
An Active-Active database is a globally distributed database that spans multiple Redis
@@ -32,8 +32,8 @@ using the proven
3232
approach.
3333
[CRDT](https://en.wikipedia.org/wiki/Conflict-free_replicated_data_type)
3434
research describes a set of techniques for creating systems that can
35-
handle conflicting writes. CRDBs are powered by Multi-Master Replication
36-
(MMR) provides a straightforward and effective way to replicate your
35+
handle conflicting writes. CRDBs powered by Multi-Master Replication
36+
(MMR) provide a straightforward and effective way to replicate your
3737
data between regions and simplify development of complex applications
3838
that can maintain correctness under geo-failovers and concurrent
3939
cross-region writes to the same data.
@@ -43,14 +43,14 @@ cross-region writes to the same data.
4343
Active-Active databases replicate data between multiple Redis Enterprise Software
4444
clusters. Common uses for Active-Active databases include disaster recovery,
4545
geographically redundant applications, and keeping data closer to your
46-
user's locations. MMR is always multi-directional amongst the clusters
46+
users' locations. MMR is always multi-directional amongst the clusters
4747
configured in the Active-Active database. For unidirectional replication, please see the
4848
Replica Of capabilities in Redis Enterprise Software.
4949

5050
## Example of synchronization
5151

52-
In the example below, database writes are concurrent at the point in
53-
times t1 and t2 and happen before a sync can communicate the changes.
52+
In the example below, database writes are concurrent at the points in
53+
time t1 and t2 and happen before a sync can communicate the changes.
5454
However, writes at times t4 and t6 are not concurrent as a sync happened
5555
in between.
5656

@@ -64,5 +64,5 @@ in between.
6464
| t6 | | SET key1 “d” |
6565

6666
[Learn more about
67-
synchronization]({{< relref "/operate/rs/7.4/databases/active-active" >}}) for
68-
each supported data type and [how to develop]({{< relref "/operate/rs/7.4/databases/active-active/develop/develop-for-aa.md" >}}) with them on Redis Enterprise Software.
67+
synchronization for
68+
each supported data type]({{< relref "/operate/rs/7.4/databases/active-active/develop/data-types/" >}}) and [how to develop applications]({{< relref "/operate/rs/7.4/databases/active-active/develop/develop-for-aa.md" >}}) with them on Redis Enterprise Software.

content/operate/rs/7.4/databases/active-active/develop/data-types/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories:
88
- rc
99
description: Introduction to differences in data types between standalone and Active-Active
1010
Redis databases.
11-
hideListLinks: true
11+
hideListLinks: false
1212
linktitle: Data types
1313
weight: 90
1414
url: '/operate/rs/7.4/databases/active-active/develop/data-types/'
@@ -22,5 +22,5 @@ conflicting concurrent writes for each data type.
2222

2323
As conflict handling rules differ between data types, some commands have slightly different requirements in Active-Active databases versus standard Redis databases.
2424

25-
See the following articles for more information
25+
See the following articles for more information.
2626

content/operate/rs/7.8/databases/active-active/develop/_index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ of events under geo-failovers and cross-region write conflicts. In Redis Enterpr
1919
simplify developing such applications by directly using built-in smarts
2020
for handling conflicting writes based on the data type in use. Instead
2121
of depending on just simplistic "last-writer-wins" type conflict
22-
resolution, geo-distributed Active-Active databases (formerly known as CRDBs) combines techniques defined in CRDT
22+
resolution, geo-distributed Active-Active databases (formerly known as CRDBs) combine techniques defined in CRDT
2323
(conflict-free replicated data types) research with Redis types to
24-
provide smart and automatic conflict resolution based on the data types
24+
provide smart and automatic conflict resolution based on the data type's
2525
intent.
2626

2727
An Active-Active database is a globally distributed database that spans multiple Redis
@@ -32,8 +32,8 @@ using the proven
3232
approach.
3333
[CRDT](https://en.wikipedia.org/wiki/Conflict-free_replicated_data_type)
3434
research describes a set of techniques for creating systems that can
35-
handle conflicting writes. CRDBs are powered by Multi-Master Replication
36-
(MMR) provides a straightforward and effective way to replicate your
35+
handle conflicting writes. CRDBs powered by Multi-Master Replication
36+
(MMR) provide a straightforward and effective way to replicate your
3737
data between regions and simplify development of complex applications
3838
that can maintain correctness under geo-failovers and concurrent
3939
cross-region writes to the same data.
@@ -43,14 +43,14 @@ cross-region writes to the same data.
4343
Active-Active databases replicate data between multiple Redis Enterprise Software
4444
clusters. Common uses for Active-Active databases include disaster recovery,
4545
geographically redundant applications, and keeping data closer to your
46-
user's locations. MMR is always multi-directional amongst the clusters
46+
users' locations. MMR is always multi-directional amongst the clusters
4747
configured in the Active-Active database. For unidirectional replication, please see the
4848
Replica Of capabilities in Redis Enterprise Software.
4949

5050
## Example of synchronization
5151

52-
In the example below, database writes are concurrent at the point in
53-
times t1 and t2 and happen before a sync can communicate the changes.
52+
In the example below, database writes are concurrent at the points in
53+
time t1 and t2 and happen before a sync can communicate the changes.
5454
However, writes at times t4 and t6 are not concurrent as a sync happened
5555
in between.
5656

@@ -64,5 +64,5 @@ in between.
6464
| t6 | | SET key1 “d” |
6565

6666
[Learn more about
67-
synchronization]({{< relref "/operate/rs/7.8/databases/active-active" >}}) for
68-
each supported data type and [how to develop]({{< relref "/operate/rs/7.8/databases/active-active/develop/develop-for-aa.md" >}}) with them on Redis Enterprise Software.
67+
synchronization for
68+
each supported data type]({{< relref "/operate/rs/7.8/databases/active-active/develop/data-types/" >}}) and [how to develop applications]({{< relref "/operate/rs/7.8/databases/active-active/develop/develop-for-aa.md" >}}) with them on Redis Enterprise Software.

content/operate/rs/7.8/databases/active-active/develop/data-types/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories:
88
- rc
99
description: Introduction to differences in data types between standalone and Active-Active
1010
Redis databases.
11-
hideListLinks: true
11+
hideListLinks: false
1212
linktitle: Data types
1313
weight: 90
1414
url: '/operate/rs/7.8/databases/active-active/develop/data-types/'
@@ -22,5 +22,5 @@ conflicting concurrent writes for each data type.
2222

2323
As conflict handling rules differ between data types, some commands have slightly different requirements in Active-Active databases versus standard Redis databases.
2424

25-
See the following articles for more information
25+
See the following articles for more information.
2626

content/operate/rs/databases/active-active/develop/_index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ of events under geo-failovers and cross-region write conflicts. In Redis Enterpr
1818
simplify developing such applications by directly using built-in smarts
1919
for handling conflicting writes based on the data type in use. Instead
2020
of depending on just simplistic "last-writer-wins" type conflict
21-
resolution, geo-distributed Active-Active databases (formerly known as CRDBs) combines techniques defined in CRDT
21+
resolution, geo-distributed Active-Active databases (formerly known as CRDBs) combine techniques defined in CRDT
2222
(conflict-free replicated data types) research with Redis types to
23-
provide smart and automatic conflict resolution based on the data types
23+
provide smart and automatic conflict resolution based on the data type's
2424
intent.
2525

2626
An Active-Active database is a globally distributed database that spans multiple Redis
@@ -31,8 +31,8 @@ using the proven
3131
approach.
3232
[CRDT](https://en.wikipedia.org/wiki/Conflict-free_replicated_data_type)
3333
research describes a set of techniques for creating systems that can
34-
handle conflicting writes. CRDBs are powered by Multi-Master Replication
35-
(MMR) provides a straightforward and effective way to replicate your
34+
handle conflicting writes. CRDBs powered by Multi-Master Replication
35+
(MMR) provide a straightforward and effective way to replicate your
3636
data between regions and simplify development of complex applications
3737
that can maintain correctness under geo-failovers and concurrent
3838
cross-region writes to the same data.
@@ -42,14 +42,14 @@ cross-region writes to the same data.
4242
Active-Active databases replicate data between multiple Redis Enterprise Software
4343
clusters. Common uses for Active-Active databases include disaster recovery,
4444
geographically redundant applications, and keeping data closer to your
45-
user's locations. MMR is always multi-directional amongst the clusters
45+
users' locations. MMR is always multi-directional amongst the clusters
4646
configured in the Active-Active database. For unidirectional replication, please see the
4747
Replica Of capabilities in Redis Enterprise Software.
4848

4949
## Example of synchronization
5050

51-
In the example below, database writes are concurrent at the point in
52-
times t1 and t2 and happen before a sync can communicate the changes.
51+
In the example below, database writes are concurrent at the points in
52+
time t1 and t2 and happen before a sync can communicate the changes.
5353
However, writes at times t4 and t6 are not concurrent as a sync happened
5454
in between.
5555

@@ -63,5 +63,5 @@ in between.
6363
| t6 | | SET key1 “d” |
6464

6565
[Learn more about
66-
synchronization]({{< relref "/operate/rs/databases/active-active" >}}) for
67-
each supported data type and [how to develop]({{< relref "/operate/rs/databases/active-active/develop/develop-for-aa.md" >}}) with them on Redis Enterprise Software.
66+
synchronization for
67+
each supported data type]({{< relref "/operate/rs/databases/active-active/develop/data-types/" >}}) and [how to develop applications]({{< relref "/operate/rs/databases/active-active/develop/develop-for-aa.md" >}}) with them on Redis Enterprise Software.

content/operate/rs/databases/active-active/develop/data-types/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories:
88
- rc
99
description: Introduction to differences in data types between standalone and Active-Active
1010
Redis databases.
11-
hideListLinks: true
11+
hideListLinks: false
1212
linktitle: Data types
1313
weight: 90
1414
---
@@ -21,5 +21,5 @@ conflicting concurrent writes for each data type.
2121

2222
As conflict handling rules differ between data types, some commands have slightly different requirements in Active-Active databases versus standard Redis databases.
2323

24-
See the following articles for more information
24+
See the following articles for more information.
2525

0 commit comments

Comments
 (0)