mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
batch to mongo
This commit is contained in:
parent
5e76a8b3a8
commit
a35712f281
@ -27,7 +27,8 @@ func (d *DataBases) BatchInsertChat(userID string, msgList []*pbMsg.MsgDataToMQ,
|
||||
return utils.Wrap(err, "")
|
||||
}
|
||||
|
||||
remain := currentMaxSeq % uint64(GetSingleGocMsgNum())
|
||||
//4999
|
||||
remain := uint64(GetSingleGocMsgNum()) - (currentMaxSeq % uint64(GetSingleGocMsgNum()))
|
||||
insertCounter := uint64(0)
|
||||
msgListToMongo := make([]MsgInfo, 0)
|
||||
msgListToMongoNext := make([]MsgInfo, 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user