How does noSQL perform horizontal scaling and how it is more efficient than RDBMS scaling

前端 未结 2 1763
小蘑菇
小蘑菇 2020-12-07 05:55

I was reading about noSQL and relational DBMSs. After going through many posts, I am not able to find out exactly how noSQL systems perform horizontal scaling and how it is

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-07 06:29

    Wiki relational DBMSs. They offer generic querying and integrity with a certain computational speed/storage cost via modeling in terms of relations--tables of rows that make some true statement about the situation--generally plus concurrent and distributed atomic transactions. Read Wikipedia re NoSQL. This is a catch-all term to refer to systems that "scale" in various ways by the foregoing of and/or specializing in assorted functionality offered by current RDBMS interfaces and implementations, depending on the particular NoSQL system (or, given some shared feature, class of system). Since "relational" is about characterizing and querying state as tables and not about particular performance or other properties, "NoSQL" is actually a misconceived misnomer.

提交回复
热议问题