mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
reafctor: pool
This commit is contained in:
@@ -14,11 +14,19 @@ type MongoConn struct {
|
||||
Cli *mongo.Client
|
||||
}
|
||||
|
||||
func (mc *MongoConn) Close() {
|
||||
/******************* pool.Conn impl *******************/
|
||||
|
||||
func (mc *MongoConn) Close() error {
|
||||
if mc.Cli != nil {
|
||||
if err := mc.Cli.Disconnect(context.Background()); err != nil {
|
||||
logx.Errorf("关闭mongo实例[%s]连接失败: %s", mc.Id, err)
|
||||
return err
|
||||
}
|
||||
mc.Cli = nil
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (mc *MongoConn) Ping() error {
|
||||
return mc.Cli.Ping(context.Background(), nil)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user