Good reasons NOT to use a relational database?

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

    Custom (hand-written) storage engine / Potentially very high performance in required uses cases

    http://www.hdfgroup.org/

    If you have enormous data sets, instead of rolling your own, you might use HDF, the Hierarchical Data Format.

    http://en.wikipedia.org/wiki/Hierarchical_Data_Format:

    HDF supports several different data models, including multidimensional arrays, raster images, and tables.

    It's also hierarchical like a file system, but the data is stored in one magic binary file.

    HDF5 is a suite that makes possible the management of extremely large and complex data collections.

    Think petabytes of NASA/JPL remote sensing data.

提交回复
热议问题