Good reasons NOT to use a relational database?

后端 未结 21 1624
粉色の甜心
粉色の甜心 2020-12-22 15:14

Can you please point to alternative data storage tools and give good reasons to use them instead of good-old relational databases? In my opinion, most applications rarely us

21条回答
  •  一向
    一向 (楼主)
    2020-12-22 15:39

    BTree files are often much faster than relational databases. SQLite contains within it a BTree library which is in the public domain (as in genuinely 'public domain', not using the term loosely).

    Frankly though, if I wanted a multi-user system I would need a lot of persuading not to use a decent server relational database.

提交回复
热议问题