Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing broken anchors in api-compatibility #147

Merged
merged 7 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions website/docs/commands/api-compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,18 +91,18 @@ Note that this list is subject to change as we continue to expand our API comman
| | SORT | ➖ | |
| | SORT_RO | ➖ | |
| | TOUCH | ➖ | |
| | [TTL](generic-commands.md#ttl-ttl) | ➕ | |
| | [TTL](generic-commands.md#ttl) | ➕ | |
| | [TYPE](generic-commands.md#type) | ➕ | |
| | [UNLINK](generic-commands.md#unlink) | ➕ | |
| | WAIT | ➖ | |
| <span id="geo">**GEO**</span> | [GEOADD](data-structures.md#geoadd-geoadd) | ➕ | |
| <span id="geo">**GEO**</span> | [GEOADD](data-structures.md#geoadd) | ➕ | |
| | [GEODIST](data-structures.md#geodist) | ➕ | |
| | [GEOHASH](data-structures.md#geohash) | ➕ | |
| | [GEOPOS](data-structures.md#geopos) | ➕ | |
| | GEORADIUS | ➖ | |
| | GEORADIUS_RO | ➖ | |
| | GEORADIUSBYMEMBER | ➖ | |
| | [GEOSEARCH](data-structures.md#geosearch-geosearch) | ➕ | Partially Implemented |
| | [GEOSEARCH](data-structures.md#geosearch) | ➕ | Partially Implemented |
| | GEOSEARCHSTORE | ➖ | |
| <span id="hash">**HASH**</span> | [HDEL](data-structures.md#hdel) | ➕ | |
| | [HEXISTS](data-structures.md#hexists) | ➕ | |
Expand All @@ -129,7 +129,7 @@ Note that this list is subject to change as we continue to expand our API comman
| | [DEL](generic-commands.md#del) | ➕ | |
| | DUMP | ➖ | |
| | [EXISTS](generic-commands.md#exists) | ➕ | |
| | [EXPIRE](generic-commands.md#expire-expire) | ➕ | |
| | [EXPIRE](generic-commands.md#expire) | ➕ | |
| | EXPIREAT | ➖ | |
| | EXPIRETIME | ➖ | |
| | [KEYS](generic-commands.md#keys) | ➕ | |
Expand Down Expand Up @@ -225,7 +225,7 @@ Note that this list is subject to change as we continue to expand our API comman
| | [SPOP](data-structures.md#spop) | ➕ | |
| | SRANDMEMBER | ➖ | |
| | [SREM](data-structures.md#srem) | ➕ | |
| | [SSCAN](data-structures.md#sscan-sscan) | ➕ | |
| | [SSCAN](data-structures.md#sscan) | ➕ | |
| | SUNION | ➖ | |
| | SUNIONSTORE | ➖ | |
| <span id="sorted-set">**SORTED SET**</span> | BZPOP | ➖ | |
Expand Down Expand Up @@ -305,4 +305,4 @@ Note that this list is subject to change as we continue to expand our API comman
| | [EXEC](transactions.md#exec) | ➕ | |
| | [MULTI](transactions.md#multi) | ➕ | |
| | [UNWATCH](transactions.md#unwatch) | ➕ | |
| | [WATCH](transactions.md#watch) | ➕ | |
| | [WATCH](transactions.md#watch) | ➕ | |
6 changes: 3 additions & 3 deletions website/docs/commands/data-structures.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ If **key** does not exist, it is treated as an empty set and this command return

---

### SSCAN {#sscan}
### SSCAN

#### Syntax

Expand Down Expand Up @@ -787,7 +787,7 @@ If member does not exist in the sorted set, or **key** does not exist, nil is re

## Geospatial indices

### GEOADD {#geoadd}
### GEOADD

#### Syntax

Expand Down Expand Up @@ -873,7 +873,7 @@ The command can accept a variable number of arguments so it always returns an ar

---

### GEOSEARCH {#geosearch}
### GEOSEARCH

#### Syntax

Expand Down
4 changes: 2 additions & 2 deletions website/docs/commands/generic-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Integer reply: the number of keys that exist from those specified as arguments.

---

### EXPIRE {#expire}
### EXPIRE

#### Syntax

Expand Down Expand Up @@ -272,7 +272,7 @@ Array reply: specifically, an array with two elements.

---

### TTL {#ttl}
### TTL

#### Syntax

Expand Down
2 changes: 1 addition & 1 deletion website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@
background-image: url("/static/img/garnet-bg2-2800x720.jpg");
background-repeat: no-repeat;
background-size: cover;
}
}
Loading