batch to mongo

This commit is contained in:
skiffer-git 2022-05-20 13:09:28 +08:00
parent ea8638c843
commit 17695927d5

View File

@ -27,7 +27,8 @@ func (d *DataBases) BatchInsertChat(userID string, msgList []*pbMsg.MsgDataToMQ,
return utils.Wrap(err, "") return utils.Wrap(err, "")
} }
remain := currentMaxSeq % uint64(GetSingleGocMsgNum()) //4999
remain := uint64(GetSingleGocMsgNum()) - (currentMaxSeq % uint64(GetSingleGocMsgNum()))
insertCounter := uint64(0) insertCounter := uint64(0)
msgListToMongo := make([]MsgInfo, 0) msgListToMongo := make([]MsgInfo, 0)
msgListToMongoNext := make([]MsgInfo, 0) msgListToMongoNext := make([]MsgInfo, 0)