1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# RedisBloom `cms` commands (6/6 implemented)
## [CMS.INCRBY](https://redis.io/commands/cms.incrby/)
Increases the count of one or more items by increment
## [CMS.INFO](https://redis.io/commands/cms.info/)
Returns information about a sketch
## [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/)
Initializes a Count-Min Sketch to accommodate requested tolerances.
## [CMS.MERGE](https://redis.io/commands/cms.merge/)
Merges several sketches into one sketch
## [CMS.QUERY](https://redis.io/commands/cms.query/)
Returns the count for one or more items in a sketch
|