Castle Active Record 的开销是多少?
就性能而言,使用 Castle Active Record 比直接使用 nHibernate 的开销是多少?它重要还是不重要?
What is the overhead of using Castle Active Record over using nHibernate directly in terms of performance? Is it significant or it does not matter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没关系。 ActiveRecord 只是 NHibernate 映射、查询和会话管理(以及最近的一些其他内容,如内存测试和 NHibernate.Search 集成)的一个简单的方便包装。它不会添加任何额外的数据库查询或类似的内容。
It doesn't matter. ActiveRecord is just a thin convenience wrapper over NHibernate's mapping, querying and session management (and recently some other things like in-memory testing and NHibernate.Search integration). It does not add any extra database queries or anything like that.