Hi - I have small question:
I created a database using BuildDatabaseConnection and was wondering if its OK to use it concurrently in several goroutines or should each goroutine create its own database connection
b
Barak Amar
05/10/2022, 8:50 AM
Sure - the Database interface uses callback for transactions or perform a single operation. The implementation uses a connection pool to enable working in a concurrent environment.