代码拉取完成,页面将自动刷新
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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。