Skip to content

Commit

Permalink
updated doc
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Jan 25, 2024
1 parent 04123a4 commit a7fe9a2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
1 change: 1 addition & 0 deletions docs/about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ description: Change log of all fakeredis releases
### 🚀 Features

- Implement all cuckoo filter commands #276
- Implement all Count-Min Sketch commands #277

### 🐛 Bug Fixes

Expand Down
17 changes: 8 additions & 9 deletions docs/redis-commands/RedisBloom.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,36 +96,35 @@ Returns information about a Cuckoo Filter



## `cms` commands (6/6 implemented)

### Unsupported cms commands
> To implement support for a command, see [here](../../guides/implement-command/)
#### [CMS.INITBYDIM](https://redis.io/commands/cms.initbydim/) <small>(not implemented)</small>
### [CMS.INITBYDIM](https://redis.io/commands/cms.initbydim/)

Initializes a Count-Min Sketch to dimensions specified by user

#### [CMS.INITBYPROB](https://redis.io/commands/cms.initbyprob/) <small>(not implemented)</small>
### [CMS.INITBYPROB](https://redis.io/commands/cms.initbyprob/)

Initializes a Count-Min Sketch to accommodate requested tolerances.

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

Increases the count of one or more items by increment

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

Returns the count for one or more items in a sketch

#### [CMS.MERGE](https://redis.io/commands/cms.merge/) <small>(not implemented)</small>
### [CMS.MERGE](https://redis.io/commands/cms.merge/)

Merges several sketches into one sketch

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

Returns information about a sketch




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

0 comments on commit a7fe9a2

Please sign in to comment.