How to think in data stores instead of databases?

前端 未结 8 2334
滥情空心
滥情空心 2020-11-28 17:32

As an example, Google App Engine uses Google Datastore, not a standard database, to store data. Does anybody have any tips for using Google Datastore instead of databases?

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 17:53

    Being rooted in the database world, a data store to me would be a giant table (hence the name "bigtable"). BigTable is a bad example though because it does a lot of other things that a typical database might not do, and yet it is still a database. Chances are unless you know you need to build something like Google's "bigtable", you will probably be fine with a standard database. They need that because they are handling insane amounts of data and systems together, and no commercially available system can really do the job the exact way they can demonstrate that they need the job to be done.

    (bigtable reference: http://en.wikipedia.org/wiki/BigTable)

提交回复
热议问题