getKVBatch
int getKVBatch(const GetKVBatchReq &req, GetKVBatchRsp &rsp)
功能: 批量查询数据
参数:
struct GetKVBatchReq
{
1 require string moduleName; //模块名
2 require vector<string> keys; //键集合
3 require string idcSpecified = ""; //idc区域
};
struct GetKVBatchRsp
{
1 require vector<SKeyValue> values; //结果集合
};
返回值:
返回值 | 含义 |
---|---|
ET_MODULE_NAME_INVALID | 模块名错误 |
ET_KEY_AREA_ERR | 当前key不属于本机服务,需要更新路由表重新访问 |
ET_CACHE_ERR | cache读取错误 |
ET_INPUT_PARAM_ERROR | 参数错误,例如key数量超过限制或者某个key为空等 |
ET_SYS_ERR | 系统异常 |
ET_SUCC | 批量读取成功 |