mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-24 18:36:19 +08:00
redis replace go redis
This commit is contained in:
parent
0aefab34f1
commit
d00641a73c
@ -8,8 +8,8 @@ import (
|
|||||||
//"Open_IM/pkg/common/log"
|
//"Open_IM/pkg/common/log"
|
||||||
"Open_IM/pkg/utils"
|
"Open_IM/pkg/utils"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
go_redis "github.com/go-redis/redis/v8"
|
||||||
"go.mongodb.org/mongo-driver/mongo/options"
|
"go.mongodb.org/mongo-driver/mongo/options"
|
||||||
|
|
||||||
// "context"
|
// "context"
|
||||||
// "fmt"
|
// "fmt"
|
||||||
"github.com/garyburd/redigo/redis"
|
"github.com/garyburd/redigo/redis"
|
||||||
@ -30,6 +30,7 @@ type DataBases struct {
|
|||||||
mgoSession *mgo.Session
|
mgoSession *mgo.Session
|
||||||
redisPool *redis.Pool
|
redisPool *redis.Pool
|
||||||
mongoClient *mongo.Client
|
mongoClient *mongo.Client
|
||||||
|
rdb *go_redis.ClusterClient
|
||||||
}
|
}
|
||||||
|
|
||||||
func key(dbAddress, dbName string) string {
|
func key(dbAddress, dbName string) string {
|
||||||
@ -113,6 +114,18 @@ func init() {
|
|||||||
)
|
)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DB.rdb = go_redis.NewClusterClient(&go_redis.ClusterOptions{
|
||||||
|
Addrs: []string{config.Config.Redis.DBAddress},
|
||||||
|
PoolSize: 100,
|
||||||
|
Password: config.Config.Redis.DBPassWord,
|
||||||
|
})
|
||||||
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
||||||
|
defer cancel()
|
||||||
|
_, err = DB.rdb.Ping(ctx).Result()
|
||||||
|
if err != nil {
|
||||||
|
panic(err.Error())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func createMongoIndex(client *mongo.Client, collection string, isUnique bool, keys ...string) error {
|
func createMongoIndex(client *mongo.Client, collection string, isUnique bool, keys ...string) error {
|
||||||
|
44
pkg/common/db/newRedisModel.go
Normal file
44
pkg/common/db/newRedisModel.go
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
package db
|
||||||
|
|
||||||
|
import (
|
||||||
|
"Open_IM/pkg/common/config"
|
||||||
|
log2 "Open_IM/pkg/common/log"
|
||||||
|
pbChat "Open_IM/pkg/proto/chat"
|
||||||
|
"Open_IM/pkg/utils"
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"strconv"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
//func (d * DataBases)pubMessage(channel, msg string) {
|
||||||
|
// d.rdb.Publish(context.Background(),channel,msg)
|
||||||
|
//}
|
||||||
|
//func (d * DataBases)pubMessage(channel, msg string) {
|
||||||
|
// d.rdb.Publish(context.Background(),channel,msg)
|
||||||
|
//}
|
||||||
|
|
||||||
|
func (d *DataBases) NewSetMessageToCache(msgList []*pbChat.MsgDataToMQ, uid string, operationID string) error {
|
||||||
|
ctx := context.Background()
|
||||||
|
var failedList []pbChat.MsgDataToMQ
|
||||||
|
for _, msg := range msgList {
|
||||||
|
key := messageCache + uid + "_" + strconv.Itoa(int(msg.MsgData.Seq))
|
||||||
|
s, err := utils.Pb2Map(msg.MsgData)
|
||||||
|
if err != nil {
|
||||||
|
log2.NewWarn(operationID, utils.GetSelfFuncName(), "Pb2Map failed", msg.MsgData.String(), uid, err.Error())
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
log2.NewDebug(operationID, "convert map is ", s)
|
||||||
|
val, err := d.rdb.HMSet(ctx, key, s).Result()
|
||||||
|
if err != nil {
|
||||||
|
log2.NewWarn(operationID, utils.GetSelfFuncName(), "redis failed", "args:", key, *msg, uid, s, val)
|
||||||
|
failedList = append(failedList, *msg)
|
||||||
|
}
|
||||||
|
d.rdb.Expire(ctx, key, time.Second*time.Duration(config.Config.MsgCacheTimeout))
|
||||||
|
}
|
||||||
|
if len(failedList) != 0 {
|
||||||
|
return errors.New(fmt.Sprintf("set msg to cache failed, failed lists: %s", failedList))
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
@ -1,6 +1,9 @@
|
|||||||
package db
|
package db
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
pbChat "Open_IM/pkg/proto/chat"
|
||||||
|
"context"
|
||||||
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"testing"
|
"testing"
|
||||||
@ -25,3 +28,29 @@ func TestDataBases_GetMultiConversationMsgOpt(t *testing.T) {
|
|||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
fmt.Println(m)
|
fmt.Println(m)
|
||||||
}
|
}
|
||||||
|
func Test_GetKeyTTL(t *testing.T) {
|
||||||
|
ctx := context.Background()
|
||||||
|
key := flag.String("key", "key", "key value")
|
||||||
|
flag.Parse()
|
||||||
|
ttl, err := DB.rdb.TTL(ctx, *key).Result()
|
||||||
|
assert.Nil(t, err)
|
||||||
|
fmt.Println(ttl)
|
||||||
|
}
|
||||||
|
func Test_HGetAll(t *testing.T) {
|
||||||
|
ctx := context.Background()
|
||||||
|
key := flag.String("key", "key", "key value")
|
||||||
|
flag.Parse()
|
||||||
|
ttl, err := DB.rdb.TTL(ctx, *key).Result()
|
||||||
|
assert.Nil(t, err)
|
||||||
|
fmt.Println(ttl)
|
||||||
|
}
|
||||||
|
func Test_NewSetMessageToCache(t *testing.T) {
|
||||||
|
var msg pbChat.MsgDataToMQ
|
||||||
|
uid := "test_uid"
|
||||||
|
msg.MsgData.Seq = 11
|
||||||
|
msg.MsgData.ClientMsgID = "23jwhjsdf"
|
||||||
|
messageList := []*pbChat.MsgDataToMQ{&msg}
|
||||||
|
err := DB.NewSetMessageToCache(messageList, uid, "test")
|
||||||
|
assert.Nil(t, err)
|
||||||
|
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user