NoSQL vs. SQL when scalability is irrelevant

后端 未结 5 2078
别跟我提以往
别跟我提以往 2020-12-31 00:31

Recently I have read a lot about different NoSQL databases and how they are being effectively deployed by some major websites out there. I\'m starting a project in which I

5条回答
  •  星月不相逢
    2020-12-31 01:00

    I don't think you should choose NoSQL datastore for its schema free design. Schema free design always existed in RDBMS via XML and some databases have good XML support. It is a lot easier to deal with a database than a NoSQL datastore. Scalability and big data should be the primary drivers to choose a NoSQL datastore otherwise the tradeoff of ACID and SQL is a lot to switch to NoSQL.

提交回复
热议问题