连接池
我可以知道连接池是否也适用于基于窗口的应用程序而不仅仅是基于网络的应用程序?请指教。谢谢
May I know if the connection pooling is applicable also for the window base application and not just for web base? Please advice. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
粗略地说,所有需要连接的东西都可以池化。无论它是无头应用程序还是 GUI 应用程序。
Roughly, everything that needs a connection might pool it. No matter if it is headlesss or a GUI application.
只要有多个使用者争用创建昂贵的连接,连接池就适用。
Connection pooling is applicable any time you will have multiple consumers contending for expensive-to-create connections.