database Instagram 等应用程序的数据库实现
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/24113215/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
database implementation for apps like instagram
提问by anivader
I'm wondering how do apps like snapchat and instagram store pictures and user records in database.
我想知道 snapchat 和 instagram 等应用程序如何在数据库中存储图片和用户记录。
Say I have a user table, how would they maintain list of followers for each user? Would they store the list of followers for each entry in user table or make a separate table for follow event and make an entry every time someone follows someone.
假设我有一个用户表,他们将如何维护每个用户的关注者列表?他们会在用户表中存储每个条目的关注者列表,还是为关注事件创建一个单独的表,并在每次有人关注某人时创建一个条目。
Also, for storing pictures, I'm guessing they would dump the pictures in a mass storage server space and store the URL in tables. Is there a better way of implementing this? If not, what kind of mass storage server would they go for? Dedicated or shared servers?
此外,为了存储图片,我猜他们会将图片转储到大容量存储服务器空间并将 URL 存储在表格中。有没有更好的方法来实现这个?如果没有,他们会选择什么样的大容量存储服务器?专用服务器还是共享服务器?
Thanks.
谢谢。

