Following usual go idioms, it would be helpful in the documentation to mark objects that can safely be used concurrently from multiple goroutines. As far as I know, only sqlx.DB is safe in this way. Based on parallels to the standard lib, I imagine that the various prepared statements are safe, too. Are any other components similarly safe for simultaneous use?
Following usual go idioms, it would be helpful in the documentation to mark objects that can safely be used concurrently from multiple goroutines. As far as I know, only
sqlx.DB
is safe in this way. Based on parallels to the standard lib, I imagine that the various prepared statements are safe, too. Are any other components similarly safe for simultaneous use?