选择数据库连接池
我们想在我们的应用程序中使用数据库连接池,但是有很多开放源池,例如dbcp,c3p0,proxool等。
我不知道哪个更好,有人对它们有一些经验吗?
we want to use a db connection pool in our applicationl,however thear are so many open soure pools,like dbcp,c3p0,proxool and etc.
I have no idea which is better,any one have some experience about them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在使用 Java EE 应用服务器,我建议您使用内置的服务器。这应该足够了。为什么要添加另一个依赖项?
我建议使用 Apache 的 DBCP。它会很好地满足您的目的。
I'd recommend using the one that is built into your Java EE app server if you're using one. That's should be sufficient. Why add another dependency?
I'd recommend using DBCP from Apache. It'll work just fine for your purposes.
作为 BoneCP (http://jolbox.com) 的作者,我邀请您查看该网站上的基准测试部分并自行判断。
瓦
As author of BoneCP (http://jolbox.com), I invite you to have a look at the benchmark section on that site and judge for yourself.
W