batch to mongo

pull/455/head
skiffer-git 3 years ago committed by Xinwei Xiong(cubxxw-openim)
parent a35712f281
commit fa7c6b6f52

@ -65,7 +65,7 @@ func (d *DataBases) GetUserMaxSeq(uid string) (uint64, error) {
//set the largest Seq //set the largest Seq
func (d *DataBases) SetUserMaxSeq(uid string, maxSeq uint64) error { func (d *DataBases) SetUserMaxSeq(uid string, maxSeq uint64) error {
key := userIncrSeq + uid key := userIncrSeq + uid
_, err := redis.Uint64(d.Exec("SET", key, maxSeq)) _, err := d.Exec("SET", key, maxSeq)
return err return err
} }

Loading…
Cancel
Save