Skip to content

Commit

Permalink
Removing test-ci.yml & adding ZMSCORE to supported commands in docs (#…
Browse files Browse the repository at this point in the history
…177)

Co-authored-by: Badrish Chandramouli <[email protected]>
  • Loading branch information
TalZaccai and badrishc authored Mar 28, 2024
1 parent 0f0baf1 commit 4a0741a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 133 deletions.
132 changes: 0 additions & 132 deletions .github/workflows/test-ci.yml

This file was deleted.

2 changes: 1 addition & 1 deletion website/docs/commands/api-compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ Note that this list is subject to change as we continue to expand our API comman
| | ZINTERSTORE || |
| | [ZLEXCOUNT](data-structures.md#zlexcount) || |
| | ZMPOP || |
| | ZMSCORE | | |
| | [ZMSCORE](data-structures.md#zmscore) | | |
| | [ZPOPMAX](data-structures.md#zpopmax) || |
| | [ZPOPMIN](data-structures.md#zpopmin) || |
| | [ZRANDMEMBER](data-structures.md#zrandmember) || |
Expand Down
19 changes: 19 additions & 0 deletions website/docs/commands/data-structures.md
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,25 @@ The min and max arguments have the same meaning as described for [ZRANGEBYLEX](#
---
### ZMSCORE
#### Syntax
```bash
ZMSCORE key member [member ...]
```
Returns the scores associated with the specified **members** in the sorted set stored at **key**.
For every **member** that does not exist in the sorted set, a nil value is returned.
Returns one of the following:
_Nil reply:_ if the member does not exist in the sorted set.\
_Array reply:_ a list of string **member** scores as double-precision floating point numbers.
---
### ZPOPMAX
#### Syntax
Expand Down

0 comments on commit 4a0741a

Please sign in to comment.