与直接使用 MongoDb java 驱动程序相比,使用 Casbah 对性能有何影响?
Casbah 是 MongoDb Java 驱动程序之上的另一层。与直接使用 Java 驱动程序相比,使用 Casbah 会降低 scala 项目中 MongoDb 数据库的查询和更新性能吗?
Casbah is another layer on top of Java driver for MongoDb. Would this reduce performance of queries and updates in MongoDb database in scala projects when using Casbah as opposed to directly using the Java driver?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(我是 Casbah 的作者和维护者)
它应该可以忽略不计 - 在过去的两年里我一直在努力将任何包装的厚度保持在最低限度。
我大胆猜测,大多数用户永远不会因为使用 Casbah 的包装器代码而不是直接使用 Java 驱动程序而开始经历任何那种明显的痛苦或速度下降。
在许多情况下,由于 Scala 能够在编译时进行优化,我还观察到 Casbah 比单独的 Java 驱动程序表现得更好(特别是对于迭代类型操作)。
(I'm the author and maintainer of Casbah)
It should be negligible - I have worked hard over the last 2 years to keep the thickness of any wrapping to the bare minimum.
I'd venture to guess that most users will never begin to experience ANY kind of noticable pain or slowdown as a result of Casbah's wrapper code over using the straight Java driver.
In many cases because of optimisations Scala is able to make at compile time, I have also observed places where Casbah performs flat out better (especially for iteration type operations) than the Java driver alone.