如何将mongodb与casbah的连接池化?
我正在将 mongodb 与 scala 驱动程序 casbah
一起使用。如果我没理解错的话,它不提供连接池。是否有 casbah 的池库,例如用于 jdbc 连接的 dbcp/c3p0 ?
I'm using mongodb with scala driver casbah
. If I'm not understanding wrong, it doesn't provide connection pool. Is there any pool libraries for casbah, like dbcp
/c3p0
for jdbc connections?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Casbah 包装了 MongoDB Java 驱动程序,它提供了一个连接池。 MongoConnection 的实例实际上是池的一个实例,而不是单个连接。可以使用传递给新 MongoConnection 的 MongoOptions 类的实例来调整该池。
Casbah wraps the MongoDB Java Driver which provides a connection pool. An Instance of MongoConnection is actually an instance of the pool, not an individual connection. The pool can be tuned with an instance of the MongoOptions class passed to a new MongoConnection.