[00:10:42] <tehpwnz> hello all, I am using Golang and the MongoDb driver however I can't find anything on how connection pools are handled and if they are safe for concurrent use. Is it safe to create one client and then use the same client with different collections and users?
[00:28:33] <tehpwnz> never mind, I found what I was looking for: Client is a handle representing a pool of connections to a MongoDB deployment. It is safe for concurrent use by multiple goroutines.