I have a question.
Can I share opened connections in connection pool between tasks?
One task locks connection from pool, uses it and returns opened connection back to pool. Is it possible another task to lock already opened connection and to use it?
For example, reusing connections to MySQL server without extra open/close operations.