shardmap 0.2.1

Sharded embedded in-memory map with optional cache, protocol, and server internals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::{EnabledModuleInfo, RedisModuleCommand};

pub(super) const MODULES: &[EnabledModuleInfo] = &[EnabledModuleInfo {
    name: "cms",
    version: 1,
}];

pub(super) const COMMANDS: &[RedisModuleCommand] = redis_module_commands![
    "countminsketch";
    "CMS.INITBYDIM" => true, "CMS.INITBYPROB" => true, "CMS.INCRBY" => true,
    "CMS.QUERY" => false, "CMS.MERGE" => true, "CMS.INFO" => false,
];