Using a Filesystem (Not a Database!) for Schemaless Data - Best Practices

后端 未结 4 528
挽巷
挽巷 2021-02-05 03:25

After reading over my other question, Using a Relational Database for Schema-Less Data, I began to wonder if a filesystem is more appropriate than a relational database for stor

4条回答
  •  盖世英雄少女心
    2021-02-05 04:27

    There's a big example of an implementation at Amazon's S3.

    http://aws.amazon.com/s3/

    This sort of implementation is where a lot of companies are moving towards, because it scales fundamentally better than a relational database can. The approach is simple, and it works, and for some problems, it's a great solution. In the case of Amazon's S3, it's particularly nice for cloud storage, if you don't want to have to worry about the hassles of storing the data yourself.

提交回复
热议问题