updateZSet
int updateZSet(const UpdateZSetReq &req)
功能: 根据指定条件更新有序集合的某条数据
参数:
struct UpdateZSetReq
{
1 require string moduleName; //模块名
2 require AddSetKeyValue value; //新数据
3 require vector<Condition> cond; //条件集合,用来确定唯一一条数据
};
struct AddSetKeyValue
{
1 require string mainKey; //主键
2 require map<string, UpdateValue> data; //新数据
3 require int expireTime; //数据过期时间
4 require bool dirty = true; //是否设置为脏数据
};
struct Condition
{
1 require string fieldName; //字段名称,需填写所有字段
2 require Op op; //操作,只支持EQ
3 require string value; //值
};
返回值:
返回值 | 含义 |
---|---|
ET_MODULE_NAME_INVALID | 模块名错误 |
ET_KEY_AREA_ERR | 当前key不属于本机服务,需要更新路由表重新访问 |
ET_FORBID_OPT | 正在迁移,禁止操作 |
ET_SERVER_TYPE_ERR | SLAVE状态下不提供接口服务 |
ET_PARAM_DIGITAL_ERR | 字段错误,例如值为数字类型的字段包含了非数字字符 |
ET_PARAM_TOO_LONG | 字段大小超过限制 |
ET_PARAM_NOT_EXIST | 字段不存在 |
ET_PARAM_MISSING | 字段缺失 |
ET_PARAM_REDUNDANT | 字段重复或字段不存在 |
ET_PARAM_OP_ERR | op错误,只支持EQ |
ET_DB_ERR | 数据库错误 |
ET_KEY_INVALID | mainKey无效 |
ET_INPUT_PARAM_ERROR | mainKey为空 |
ET_SYS_ERR | 系统异常 |
ET_SUCC | 更新成功 |