2 Star 0 Fork 0

TeamsHub/backend-gopkg

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mgo.go 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
HCY 提交于 2024-05-10 12:41 . c
package mongo
import (
"context"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"time"
)
type Config struct {
Addr string `yaml:"addr"`
User string `yaml:"user"`
Password string `yaml:"password"`
Active uint64 `yaml:"active"`
IdleTimeout int `yaml:"idleTimeout"`
}
func NewMongo(conf *Config) *mongo.Client {
opt := options.Client().ApplyURI(conf.Addr)
if len(conf.User) != 0 { // 部分连接不需要帐号密码
opt.Auth = &options.Credential{
Username: conf.User,
Password: conf.Password,
}
}
opt.SetLocalThreshold(3 * time.Second) //只使用与mongo操作耗时小于3秒的
opt.SetMaxConnIdleTime(time.Duration(conf.IdleTimeout) * time.Second) //指定连接可以保持空闲的最大毫秒数
opt.SetMaxPoolSize(conf.Active) //使用最大的连接数
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
defer cancel()
client, err := mongo.Connect(ctx, opt)
if err != nil {
panic(err)
}
return client
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wuzheng0709/backend-gopkg.git
git@gitee.com:wuzheng0709/backend-gopkg.git
wuzheng0709
backend-gopkg
backend-gopkg
v1.5.41

搜索帮助