* Pool for efficient reuse of connections. Usage: pool := client.NewPool(log.Debugf, 100, 400, 5, `127.0.0.1:3306`, `username`, `userpwd`, `dbname`) ... conn, _ := pool.GetConn(ctx) defer pool.PutConn(conn) conn.Execute/conn.Begin/etc... */
func(format string, args ...any)
| 25 | Timestamp int64 |
| 26 | |
| 27 | LogFunc func(format string, args ...any) |
| 28 | |
| 29 | Pool struct { |
| 30 | logFunc LogFunc |
nothing calls this directly
no outgoing calls
no test coverage detected