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 29 30 31 32
|
# RedisBloom `topk` commands (7/7 implemented)
## [TOPK.ADD](https://redis.io/commands/topk.add/)
Increases the count of one or more items by increment
## [TOPK.COUNT](https://redis.io/commands/topk.count/)
Return the count for one or more items are in a sketch
## [TOPK.INCRBY](https://redis.io/commands/topk.incrby/)
Increases the count of one or more items by increment
## [TOPK.INFO](https://redis.io/commands/topk.info/)
Returns information about a sketch
## [TOPK.LIST](https://redis.io/commands/topk.list/)
Return full list of items in Top K list
## [TOPK.QUERY](https://redis.io/commands/topk.query/)
Checks whether one or more items are in a sketch
## [TOPK.RESERVE](https://redis.io/commands/topk.reserve/)
Initializes a TopK with specified parameters
|