popList
int popList(const PopListReq &req, PopListRsp &rsp)
功能: 从list头部或者尾部删除一条数据
参数:
struct PopListReq
{
1 require string moduleName; //模块名
2 require string mainKey; //主键
3 require bool atHead = true; //true表示从list头部删除,false表示尾部删除
};
struct PopListRsp
{
1 require Entry entry; //被删除的数据
};
struct Entry
{
1 require map<string, string> data;
};
返回值:
返回值 | 含义 |
---|---|
ET_MODULE_NAME_INVALID | 模块名错误 |
ET_KEY_AREA_ERR | 当前key不属于本机服务,需要更新路由表重新访问 |
ET_FORBID_OPT | 正在迁移,禁止操作 |
ET_SERVER_TYPE_ERR | SLAVE状态下不提供接口服务 |
ET_KEY_INVALID | mainKey无效 |
ET_INPUT_PARAM_ERROR | mainKey为空 |
ET_SYS_ERR | 系统异常 |
ET_SUCC | 成功删除 |