BoneCP: getConnection 方法是线程安全的还是我们必须处理它?

发布于 2024-12-12 18:47:38 字数 407 浏览 1 评论 0原文

在使用 BoneCP 连接池时,我遇到了以下困惑,希望听到一些建议:

  • getConnection BoneCP 线程安全的方法?当有许多线程请求并行连接时,使用它的最佳方法是什么?
  • 每次使用连接后都需要调用connection.close()吗?
  • 如果需要调用connection.close(),它是真的断开与数据库的连接还是只是将连接发送到池中?

预先感谢您的支持。

While using the BoneCP connection pooling, I came across the following confusions and would like to hear some advise on this:

  • Is the getConnection method of the BoneCP thread-safe? What is the best way to use this when there are many threads asking for a connection in parallel?
  • Is it required to call connection.close() every time after using the connection?
  • if it is required to call connection.close(), will it really disconnect the connection with the DB or just sends the connection to the pool?

Thanks in advance for the support.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹤仙姿 2024-12-19 18:47:38

BoneCP的getConnection()是线程安全的;所以你不需要自己做任何事情。
是的,如果连接完成,您需要调用connection.close()(这不是特定于 BoneCP,而是适用于任何 JDBC 连接)。

与所有连接池一样,调用 connection.close() 会将连接返回到连接池,或者在某些情况下还会关闭物理连接(但实际上:这是一个您不应该关心的实现细节关于)。

通常,连接池维护与数据库的物理连接池。当您调用getConnection()时,连接池会查找可用的物理连接并将其包装在逻辑连接中。返回此逻辑连接。当您 close() 逻辑连接时,连接池知道物理连接可以再次重用。

The getConnection() of BoneCP is thread-safe; so you don't have to do anything yourself.
And yes, you need to call connection.close() if you are done with the connection (this is not specific to BoneCP, but applies to any JDBC connection).

As with all connection pools, calling connection.close() will return the connection to the connection pool or in some cases also close the physical connection (but really: this is an implementation detail you should not be concerned about).

In general connection pools maintain a pool of physical connections to a database. When you call getConnection(), the connection pool looks for an available physical connection and wrap it in a logical connection. This logical connection is returned. When you close() the logical connection, the connection pool knows the physical connection is available again for reuse.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文