Skip to content

Commit

Permalink
feat:topk basic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Jan 30, 2024
1 parent 9756e80 commit 2799218
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
19 changes: 9 additions & 10 deletions docs/redis-commands/RedisBloom.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,40 +124,39 @@ Returns information about a sketch



## `topk` commands (7/7 implemented)

### Unsupported topk commands
> To implement support for a command, see [here](../../guides/implement-command/)
#### [TOPK.RESERVE](https://redis.io/commands/topk.reserve/) <small>(not implemented)</small>
### [TOPK.RESERVE](https://redis.io/commands/topk.reserve/)

Initializes a TopK with specified parameters

#### [TOPK.ADD](https://redis.io/commands/topk.add/) <small>(not implemented)</small>
### [TOPK.ADD](https://redis.io/commands/topk.add/)

Increases the count of one or more items by increment

#### [TOPK.INCRBY](https://redis.io/commands/topk.incrby/) <small>(not implemented)</small>
### [TOPK.INCRBY](https://redis.io/commands/topk.incrby/)

Increases the count of one or more items by increment

#### [TOPK.QUERY](https://redis.io/commands/topk.query/) <small>(not implemented)</small>
### [TOPK.QUERY](https://redis.io/commands/topk.query/)

Checks whether one or more items are in a sketch

#### [TOPK.COUNT](https://redis.io/commands/topk.count/) <small>(not implemented)</small>
### [TOPK.COUNT](https://redis.io/commands/topk.count/)

Return the count for one or more items are in a sketch

#### [TOPK.LIST](https://redis.io/commands/topk.list/) <small>(not implemented)</small>
### [TOPK.LIST](https://redis.io/commands/topk.list/)

Return full list of items in Top K list

#### [TOPK.INFO](https://redis.io/commands/topk.info/) <small>(not implemented)</small>
### [TOPK.INFO](https://redis.io/commands/topk.info/)

Returns information about a sketch




### Unsupported tdigest commands
> To implement support for a command, see [here](../../guides/implement-command/)
Expand Down
Loading

0 comments on commit 2799218

Please sign in to comment.