I need to create a wall system just like Facebook's (users can post messages, videos, images, events, etc...). Has anyone created something similar? How do you recommend me to prepare the database?

link|improve this question

This is way to broad of a question to answer on Stackoverflow. – MitMaro Aug 20 '09 at 22:55
@MitMaro: It basically sounds like an architecture question to me, which I gather is part of the site's charter. The accepted answer is certainly stated in terms of an architectural approach. – Eric J. Aug 20 '09 at 23:42
feedback

1 Answer

up vote 15 down vote accepted

Facebook doesn't use an RDBMS for their data management.

They use a non-relational technology called Map/Reduce, included in the Hadoop project. They built a project called Hive to query the data with an SQL-like language. They also built Cassandra, another high-scale, non-relational data management technology.

Check out:


By the way, Facebook does use MySQL too, just not for the stuff that needs to be highly scalable. I just saw a blog post announcing that Facebook contributes patches back to the MySQL project, and they have a public Launchpad site called mysqlatfacebook and also a Facebook site called MySQLatFacebook.

link|improve this answer
Excellent information. I will read all the articles. Thank you! – Efe Aug 20 '09 at 23:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.