Skip to content

Commit

Permalink
Fix the typo in the redis.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fastio committed Sep 25, 2019
1 parent d36629c commit 64f928d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ create the table with the schame as follow:

```
CREATE TABLE redis (
key text,
value variant\<text, list\<text\>, map\<text\>\>,
PRIMARY KEY(key)
key text,
value variant\<text, list\<text\>, map\<text\>\>,
PRIMARY KEY(key)
)WITH ...
```

Expand Down Expand Up @@ -151,9 +151,9 @@ following CQL:

```
CREATE TABLE STRINGs (
pkey text,
data text,
PRIMARY KEY (key)
pkey text,
data text,
PRIMARY KEY (key)
) WITH ... ;
```

Expand Down Expand Up @@ -184,10 +184,10 @@ operate on this table, which is created by following CQL:

```
CREATE TABLE LISTs (
pkey text,
ckey text,
data text,
PRIMARY KEY(pkey, ckey)
pkey text,
ckey text,
data text,
PRIMARY KEY(pkey, ckey)
) WITH ... ;
```

Expand Down Expand Up @@ -334,7 +334,7 @@ timestamp.

### 5.5 Consistency

edis Cluster is not able to [guarantee strong
Redis Cluster is not able to [guarantee strong
onsistency](https://redis.io/topics/cluster-tutorial).

In Scylla, data is always replicated automatically. Read or write
Expand Down

0 comments on commit 64f928d

Please sign in to comment.