Good reasons NOT to use a relational database?

后端 未结 21 1689
粉色の甜心
粉色の甜心 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

    You can go a long way just using files stored in the file system. RDBMSs are getting better at handling blobs, but this can be a natural way to handle image data and the like, particularly if the queries are simple (enumerating and selecting individual items.)

    Other things that don't fit very well in a RDBMS are hierarchical data structures and I'm guessing geospatial data and 3D models aren't that easy to work with either.

    Services like Amazon S3 provide simpler storage models (key->value) that don't support SQL. Scalability is the key there.

    Excel files can be useful too, particularly if users need to be able to manipulate the data in a familiar environment and building a full application to do that isn't feasible.

提交回复
热议问题