You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JDBC 4.3 added two new methods beginRequest -- and endRequest that connection pools can call to demarcate request boundaries.
As the JavaDoc explains, these methods are hints to the driver that a connection becomes active. What the driver does about it is vendor specific. It may not do anything.
This issue is filed to make HikariCP call beginRequest when a connection is borrowed and endRequest when the connection is released.
The text was updated successfully, but these errors were encountered:
JDBC 4.3 added two new methods beginRequest -- and endRequest that connection pools can call to demarcate request boundaries.
As the JavaDoc explains, these methods are hints to the driver that a connection becomes active. What the driver does about it is vendor specific. It may not do anything.
This issue is filed to make HikariCP call beginRequest when a connection is borrowed and endRequest when the connection is released.
The text was updated successfully, but these errors were encountered: