setKVBatch
int setKVBatch(const SetKVBatchReq &req, SetKVBatchRsp &rsp)
功能: 批量写入数据
参数:
struct SetKVBatchReq
{
1 require string moduleName; //模块名
2 require vector<SSetKeyValue> data; //批量写入的数据集合
};
struct SetKVBatchRsp
{
1 require map<string, int> keyResult; //每个key写入的结果 WRITE_SUCC = 0/WRITE_ERROR = -1/WRITE_DATA_VER_MISMATCH = -2
};
返回值:
返回值 | 含义 |
---|---|
ET_MODULE_NAME_INVALID | 模块名错误 |
ET_SERVER_TYPE_ERR | SLAVE状态下不提供接口服务 |
ET_KEY_AREA_ERR | 当前key不属于本机服务,需要更新路由表重新访问 |
ET_INPUT_PARAM_ERROR | 参数错误,例如key数量超过限制或者某个key为空等 |
ET_SYS_ERR | 系统异常 |
ET_PARTIAL_FAIL | 部分写入成功,即存在写入失败的键值对 |
ET_SUCC | 全部写入成功 |