Skip to content

Commit 075d3c6

Browse files
authored
RS: Fixed quote characters (#2080)
* DOC-5682 RS: Fixed quote characters * DOC-5682 RS: Fixed quote characters in RS embeds
1 parent 3a62537 commit 075d3c6

File tree

53 files changed

+118
-118
lines changed

Some content is hidden

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

53 files changed

+118
-118
lines changed

content/embeds/json-active-active-conflict-resolution.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The instance with the smaller ID wins, so the key becomes an object in the given
4545
| Time | Description | Instance 1 | Instance 2 |
4646
| :---: | :--- | :--- | :--- |
4747
| t1 | Set the same key to an object or an array | JSON.SET doc $.a '{}' | JSON.SET doc $.a '[]' |
48-
| t2 | Add data to the object and array | <nobr>JSON.SET doc $.a.x '“y”'</nobr> <br /><br /> Result: <br /> {"a": {"x": "y"}} | <nobr>JSON.SET doc $.a '["z"]'</nobr> <br /><br /> Result: <br /> {“a”: ["z"]} |
48+
| t2 | Add data to the object and array | <nobr>JSON.SET doc $.a.x '"y"'</nobr> <br /><br /> Result: <br /> {"a": {"x": "y"}} | <nobr>JSON.SET doc $.a '["z"]'</nobr> <br /><br /> Result: <br /> {"a": ["z"]} |
4949
| t3 | Active-Active synchronization | – Sync – | – Sync – |
5050
| t4 | Instance 1 wins | JSON.GET doc $ <br /><br /> Result: <br /> {"a": {"x": "y"}} | JSON.GET doc $ <br /><br /> Result: <br /> {"a": {"x": "y"}} |
5151

@@ -267,8 +267,8 @@ Merges the results of all operations on the array. Preserves the original elemen
267267
| Time | Description | Instance 1 | Instance 2 |
268268
| :---: | :--- | :--- | :--- |
269269
| t1 | The document exists on both instances | JSON.GET doc $ <br /><br /> Result: <br /> '["a", "b", "c"]' | JSON.GET doc $ <br /><br /> Result: <br /> '["a", "b", "c"]' |
270-
| t2 | Instance 1 removes an array element; instance 2 adds one | JSON.ARRPOP doc $ 1 <br /><br /> Result: <br /> ["a", "c"] | <nobr>JSON.ARRINSERT doc $ 0 ‘“y”</nobr> <br /><br /> Result: <br /> ["y", "a", "b", "c"] |
271-
| t3 | Both instances add another element to the array | <nobr>JSON.ARRINSERT doc $ 1 ‘“x”</nobr> <br /><br /> Result: <br /> ["a", "x", "c"] | <nobr>JSON.ARRINSERT doc $ 2 ‘“z”</nobr> <br /><br /> Result: <br /> ["y", "a", "z", "b", "c"] |
270+
| t2 | Instance 1 removes an array element; instance 2 adds one | JSON.ARRPOP doc $ 1 <br /><br /> Result: <br /> ["a", "c"] | <nobr>JSON.ARRINSERT doc $ 0 ‘"y"</nobr> <br /><br /> Result: <br /> ["y", "a", "b", "c"] |
271+
| t3 | Both instances add another element to the array | <nobr>JSON.ARRINSERT doc $ 1 ‘"x"</nobr> <br /><br /> Result: <br /> ["a", "x", "c"] | <nobr>JSON.ARRINSERT doc $ 2 ‘"z"</nobr> <br /><br /> Result: <br /> ["y", "a", "z", "b", "c"] |
272272
| t4 | Active-Active synchronization | – Sync – | – Sync – |
273273
| t5 | Merge results from both instances | JSON.GET doc $ <br /><br /> Result: <br /> ["y", "a", "x", "z", "c"] | JSON.GET doc $ <br /><br /> Result: <br /> ["y", "a", "x", "z", "c"] |
274274

@@ -292,11 +292,11 @@ Deletion wins over updates.
292292

293293
| Time | Description | Instance 1 | Instance 2 |
294294
| :---: | :--- | :--- | :--- |
295-
| t1 | The document exists on both instances | JSON.GET doc $ <br /><br /> Result: <br /> {todo: [{title”: “buy milk”, “done: false}]} | JSON.GET doc $ <br /><br /> Result: <br /> {todo: [{title”: “buy milk”, “done: false}]} |
295+
| t1 | The document exists on both instances | JSON.GET doc $ <br /><br /> Result: <br /> {"todo": [{"title": "buy milk", "done": false}]} | JSON.GET doc $ <br /><br /> Result: <br /> {"todo": [{"title": "buy milk", "done": false}]} |
296296
| t2 | Instance 1 removes an array element; instance 2 updates the same element | <nobr>JSON.ARRPOP doc $.todo 0</nobr> | <nobr>JSON.SET doc '$.todo[0]["done"]' 'true'</nobr> |
297-
| t3 | | JSON.GET doc $ <br /><br /> Result: <br /> {todo: []} | JSON.GET doc $ <br /><br /> Result: <br /> [{title”: “buy milk”, “done: true}]} |
297+
| t3 | | JSON.GET doc $ <br /><br /> Result: <br /> {"todo": []} | JSON.GET doc $ <br /><br /> Result: <br /> [{"title": "buy milk", "done": true}]} |
298298
| t4 | Active-Active synchronization | – Sync – | – Sync – |
299-
| t5 | Instance 1 wins | JSON.GET doc $ <br /><br /> Result: <br /> doc = {todo: []} | JSON.GET doc $ <br /><br /> Result: <br /> doc = {todo: []} |
299+
| t5 | Instance 1 wins | JSON.GET doc $ <br /><br /> Result: <br /> doc = {"todo": []} | JSON.GET doc $ <br /><br /> Result: <br /> doc = {"todo": []} |
300300

301301
### Update versus update object
302302

@@ -317,8 +317,8 @@ Merges the results of all operations on the object.
317317
| Time | Description | Instance 1 | Instance 2 |
318318
| :---: | :--- | :--- | :--- |
319319
| t1 | The document exists on both instances | JSON.GET doc $ <br /><br /> Result: <br /> '{"grocery": []}' | JSON.GET doc $ <br /><br /> Result: <br /> '{"grocery": []}' |
320-
| t2 | Add new elements to the array | <nobr>JSON.ARRAPPEND doc $.grocery ‘eggs</nobr> | JSON.ARRAPPEND doc $.grocery ‘milk|
321-
| t3 | Add new elements to the array | JSON.ARRAPPEND doc $.grocery ‘ham| <nobr>JSON.ARRAPPEND doc $.grocery ‘flour</nobr> |
320+
| t2 | Add new elements to the array | <nobr>JSON.ARRAPPEND doc $.grocery ‘"eggs"</nobr> | JSON.ARRAPPEND doc $.grocery ‘"milk"|
321+
| t3 | Add new elements to the array | JSON.ARRAPPEND doc $.grocery ‘"ham"| <nobr>JSON.ARRAPPEND doc $.grocery ‘"flour"</nobr> |
322322
| t4 | | JSON.GET doc $ <br /><br /> Result: <br /> {"grocery":["eggs", "ham"]} | JSON.GET doc $ <br /><br /> Result: <br /> {"grocery":["milk", "flour"]} |
323323
| t5 | Active-Active synchronization | – Sync – | – Sync – |
324324
| t6 | Merges the results from both instances | JSON.GET doc . <br /><br /> Result: <br /> {"grocery":["eggs","ham","milk", "flour"]} | JSON.GET doc . <br /><br /> Result: <br /> {"grocery":["eggs","ham","milk", "flour" ]} |

content/embeds/rs-observability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ Dashboard displaying connection metrics between zones - [Synchronization Dashboa
278278
CRDT provides three fundamental benefits over other geo-distributed solutions:
279279

280280
* It offers local latency on read and write operations, regardless of the number of geo-replicated regions and their distance from each other.
281-
* It enables seamless conflict resolution (conflict-free) for simple and complex data types like those of Redis core.
281+
* It enables seamless conflict resolution ("conflict-free") for simple and complex data types like those of Redis core.
282282
* Even if most of the geo-replicated regions in a CRDT database (for example, 3 out of 5) are down, the remaining geo-replicated regions are uninterrupted and can continue to handle read and write operations, ensuring business continuity.
283283

284284
## Database performance indicators

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ in between.
5656

5757
| **Time** | **CRDB Instance1** | **CRDB Instance2** |
5858
| ------: | :------: | :------: |
59-
| t1 | SET key1 “a” | |
60-
| t2 | | SET key1 “b” |
59+
| t1 | SET key1 "a" | |
60+
| t2 | | SET key1 "b" |
6161
| t3 | — Sync — | — Sync — |
62-
| t4 | SET key1 “c” | |
62+
| t4 | SET key1 "c" | |
6363
| t5 | — Sync — | — Sync — |
64-
| t6 | | SET key1 “d” |
64+
| t6 | | SET key1 "d" |
6565

6666
[Learn more about
6767
synchronization for

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Here is an example of an "add wins" case:
3737

3838
| **Time** | **CRDB Instance1** | **CRDB Instance2** |
3939
| ------: | :------: | :------: |
40-
| t1 | HSET key1 field1 “a” | |
41-
| t2 | | HSET key1 field2 “b” |
40+
| t1 | HSET key1 field1 "a" | |
41+
| t2 | | HSET key1 field2 "b" |
4242
| t4 | - Sync - | - Sync - |
43-
| t5 | HGETALL key1<br/>1) field2<br/>2) “b”<br/>3) field1<br/>4) “a” | HGETALL key1<br/>1) field2<br/>2) “b”<br/>3) field1<br/>4) “a” |
43+
| t5 | HGETALL key1<br/>1) "field2"<br/>2) "b"<br/>3) "field1"<br/>4) "a" | HGETALL key1<br/>1) "field2"<br/>2) "b"<br/>3) "field1"<br/>4) "a" |

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ example:
2727

2828
| **Time** | **CRDB Instance 1** | **CRDB Instance 2** |
2929
| ------: | :------: | :------: |
30-
| t1 | LPUSH mylist hello | |
30+
| t1 | LPUSH mylist "hello" | |
3131
| t2 | — Sync — | — Sync — |
32-
| t3 | | LPUSH mylist world |
32+
| t3 | | LPUSH mylist "world" |
3333
| t4 | — Sync — | — Sync — |
34-
| t5 | LRANGE mylist 0 -1 =>world” “hello | LRANGE mylist 0 -1 => world” “hello |
34+
| t5 | LRANGE mylist 0 -1 =>"world" "hello" | LRANGE mylist 0 -1 => "world" "hello" |
3535

3636
**Explanation**:
3737
The final list contains both the "world" and "hello" elements, in that

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ Here is an example of an "add wins" case:
3131

3232
| **Time** | **CRDB Instance1** | **CRDB Instance2** |
3333
| ------: | :------: | :------: |
34-
| t1 | SADD key1 “a” | |
35-
| t2 | | SADD key1 “b” |
36-
| t3 | SMEMBERS key1 “a” | SMEMBERS key1 “b” |
34+
| t1 | SADD key1 "a" | |
35+
| t2 | | SADD key1 "b" |
36+
| t3 | SMEMBERS key1 "a" | SMEMBERS key1 "b" |
3737
| t4 | — Sync — | — Sync — |
38-
| t3 | SMEMBERS key1 “a” “b” | SMEMBERS key1 “a” “b” |
38+
| t3 | SMEMBERS key1 "a" "b" | SMEMBERS key1 "a" "b" |
3939

4040
Here is an example of an "observed remove" case.
4141

4242
| **Time** | **CRDB Instance1** | **CRDB Instance2** |
4343
| ------: | :------: | :------: |
44-
| t1 | SMEMBERS key1 “a” “b” | SMEMBERS key1 “a” “b” |
45-
| t2 | SREM key1 “a” | SADD key1 “c” |
46-
| t3 | SREM key1 “c” | |
44+
| t1 | SMEMBERS key1 "a" "b" | SMEMBERS key1 "a" "b" |
45+
| t2 | SREM key1 "a" | SADD key1 "c" |
46+
| t3 | SREM key1 "c" | |
4747
| t4 | — Sync — | — Sync — |
48-
| t3 | SMEMBERS key1 “c” “b” | SMEMBERS key1 “c” “b” |
48+
| t3 | SMEMBERS key1 "c" "b" | SMEMBERS key1 "c" "b" |

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ time (t2) wins over the update at t1.
3434

3535
| **Time** | **Region 1** | **Region 2** |
3636
| :------: | :------: | :------: |
37-
| t1 | SET text “a” | |
38-
| t2 | | SET text “b” |
37+
| t1 | SET text "a" | |
38+
| t2 | | SET text "b" |
3939
| t3 | — Sync — | — Sync — |
40-
| t4 | SET text “c” | |
40+
| t4 | SET text "c" | |
4141
| t5 | — Sync — | — Sync — |
42-
| t6 | | SET text “d” |
42+
| t6 | | SET text "d" |
4343

4444
### String counter support
4545

content/operate/rs/7.4/databases/auto-tiering/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ When using Auto Tiering, RAM storage holds:
5353
- Dictionaries
5454
- Hot data (working set)
5555

56-
All data is accessed through RAM. If a value in flash memory is accessed, it becomes part of the working set and is moved to RAM. These values are referred to as hot data.
56+
All data is accessed through RAM. If a value in flash memory is accessed, it becomes part of the working set and is moved to RAM. These values are referred to as "hot data".
5757

58-
Inactive or infrequently accessed data is referred to as warm data and stored in flash memory. When more space is needed in RAM, warm data is moved from RAM to flash storage.
58+
Inactive or infrequently accessed data is referred to as "warm data" and stored in flash memory. When more space is needed in RAM, warm data is moved from RAM to flash storage.
5959

6060
{{<note>}} When using Auto Tiering with RediSearch, it’s important to note that RediSearch indexes are also stored in RAM.{{</note>}}
6161

content/operate/rs/7.4/installing-upgrading/product-lifecycle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Redis Enterprise modules follow the [modules lifecycle]({{< relref "/operate/oss
1919
## Release numbers
2020

2121
Redis uses a four-place numbering scheme to designate released versions of its products.
22-
The format is Major1.Major2.Minor-Build.
22+
The format is "Major1.Major2.Minor-Build".
2323

2424
- Major sections of the version number represents fundamental changes and additions in
2525
capabilities to Redis Enterprise Software. The Major1 and Major2 part of the

content/operate/rs/7.4/networking/cluster-lba-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The architecture is shown in the following diagram with a 3-node Redis Enterpris
4444
- [Install]({{< relref "/operate/rs/7.4/installing-upgrading" >}}) the latest version of Redis Enterprise Software on your clusters
4545
- Configure the cluster with the cluster name (FQDN) even though DNS is not in use.
4646
Remember that the same cluster name is used to issue the license keys.
47-
We recommend that you use a .local suffix in the FQDN.
47+
We recommend that you use a ".local" suffix in the FQDN.
4848

4949
### Configure load balancers
5050

0 commit comments

Comments
 (0)