Skip to content

Commit 478d280

Browse files
committed
DOC-5682 RS: Fixed quote characters
1 parent 3a62537 commit 478d280

File tree

51 files changed

+109
-109
lines changed

Some content is hidden

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

51 files changed

+109
-109
lines changed

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

content/operate/rs/7.4/references/rest-api/requests/bdbs/modules/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Use the module runtime configuration command (if defined) to configure new argum
6161
|-------|------|-------------|
6262
| modules | list of JSON objects | List of modules (module_name) and their new configuration settings (module_args) |
6363
| module_name | `search`<br />`ReJSON`<br />`graph`<br />`timeseries`<br />`bf` | Module's name |
64-
| module_args | string | Module command line arguments (pattern does not allow special characters &,<,>,) |
64+
| module_args | string | Module command line arguments (pattern does not allow special characters &,<,>,") |
6565

6666
### Response {#post-response}
6767

content/operate/rs/7.4/references/rest-api/requests/modules/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Use the module runtime configuration command (if defined) to configure new argum
6161
|-------|------|-------------|
6262
| modules | list of JSON objects | List of modules (module_name) and their new configuration settings (module_args) |
6363
| module_name | `search`<br />`ReJSON`<br />`graph`<br />`timeseries`<br />`bf` | Module's name |
64-
| module_args | string | Module command line arguments (pattern does not allow special characters &,<,>,) |
64+
| module_args | string | Module command line arguments (pattern does not allow special characters &,<,>,") |
6565

6666
### Response {#post-response}
6767

0 commit comments

Comments
 (0)