What makes Cassandra (and NoSQL in general) a better solution to an RDBMS?

前端 未结 11 2033
醉梦人生
醉梦人生 2021-02-02 12:00

Well, NoSQL is a buzzword right now so I\'ve been looking into it. I\'m yet to get my head around ColumnFamilies and SuperColumns, etc... But I have been looking at how the data

11条回答
  •  温柔的废话
    2021-02-02 12:16

    RDBMS' are all about consistency. They do a great job on data that gets churned alot with transactions. See also ACID (atomicity, consistency, isolation, durability). Sometimes you don't need all that, like when storing data from logs or working on data that's not going to change, just accumulate.

    NoSQL databases let you relax the requirements for transactions and get better performance (as well as scale to large distributed storage silos easier).

提交回复
热议问题