You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
package logic
|
|
|
|
import (
|
|
"Open_IM/pkg/common/db"
|
|
"Open_IM/pkg/common/log"
|
|
pbMsg "Open_IM/pkg/proto/chat"
|
|
"Open_IM/pkg/utils"
|
|
)
|
|
|
|
func saveUserChat(uid string, msg *pbMsg.MsgDataToMQ) error {
|
|
time := utils.GetCurrentTimestampByMill()
|
|
seq, err := db.DB.IncrUserSeq(uid)
|
|
if err != nil {
|
|
log.NewError(msg.OperationID, "data insert to redis err", err.Error(), msg.String())
|
|
return err
|
|
}
|
|
msg.MsgData.Seq = uint32(seq)
|
|
pbSaveData := pbMsg.MsgDataToDB{}
|
|
pbSaveData.MsgData = msg.MsgData
|
|
log.NewInfo(msg.OperationID, "IncrUserSeq cost time", utils.GetCurrentTimestampByMill()-time)
|
|
return db.DB.SaveUserChatMongo2(uid, pbSaveData.MsgData.SendTime, &pbSaveData)
|
|
// return db.DB.SaveUserChatMongo2(uid, pbSaveData.MsgData.SendTime, &pbSaveData)
|
|
}
|
|
|
|
func saveUserChatList(userID string, msgList []*pbMsg.MsgDataToMQ, operationID string) (error, uint64) {
|
|
log.Info(operationID, utils.GetSelfFuncName(), "args ", userID, len(msgList))
|
|
//return db.DB.BatchInsertChat(userID, msgList, operationID)
|
|
return db.DB.BatchInsertChat2Cache(userID, msgList, operationID)
|
|
}
|