This question shows research effort; it is useful and clear
6
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我正在开发多线程应用程序(服务器),我曾经一次处理 2000 个客户端,并且我在每个线程中打开 MySQL 数据库的单独数据库连接。所以我启用了连接池。我搜索了许多块,在使用连接后我们应该关闭它,然后它将返回池并被其他线程使用。另一方面,我们知道建立连接是一个耗时的过程。所以我的问题是为什么我们要在连接池中关闭连接。什么是更好的保持连接打开或关闭它们?