When mongodb client should disconnect after instantiating client?
As per the documentation in Readme: Make sure to defer a call to Disconnect after instantiating your client: defer func() { if err = client.Disconnect(ctx); err != nil { panic(err) } }() Does the above documentation meant to disconnect, during…