数据库连接
概述
本章节介绍创建链接的 option 的用法
准备条件
WithTimeout
设置 mongo 操作的超时时间。
示例:
func NewUserModel(url, db, collection string) UserModel {
conn := mon.MustNewModel(url, db, collection, mon.WithTimeout(time.Second))
return &customUserModel{
defaultUserModel: newDefaultUserModel(conn),
}
}