RavenDb 与 RDBMS 水平扩展
与传统 RDBMS 相比,哪些因素使得 RavenDb(作为典型的 NoSQL 文档数据库)水平扩展能力更好?
What are the factors which make RavenDb (as typical NoSQL document database) horizontal scaling capabilities much better in comparison to classical RDBMS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关系数据库更多地依赖于连接、集合等概念。
这使得数据分片变得更加困难,因为分割数据很困难。
使用 RavenDB,文档是独立的,因此这变得容易。
下一部分是 RavenDB 附带分片 API OOTB,因此您可以利用它。
Relational databases depend much more on the notion of joins, sets and stuff like that.
That makes sharding the data much harder, because splitting the data is hard.
With RavenDB, documents are self contained, so this becomes much easier.
The next part is that RavenDB comes with sharding API OOTB, so you can just take advantage of that.