Skip to content Skip to sidebar Skip to footer

Twitter Like Model Using SQL Server/Azure Or Graph DB

Is it possible to design a twitter like DB using SQL server? a DB that will ensure high scalability and fast queries. I am building a .NET platform that requires a similar model li

Solution 1:

SQL Server will most certainly be able to handle any load that you have. SQL Azure supports databases up to 150GB (though I hear you can get more if you ask). With Azure SQL Federation, you can scale out multiple databases on hundreds of nodes around the world.

As for a relational database like SQL Server, or the "NoSQL" variants like Azure Table Storage, it depends on your needs and how structured your data is. Given you'll probably do a lot of joins, querying for followers of users, tweets that someone should see, etc. you're best bet is to go with a relational db. Even Facebook still uses MySQL, so you're not exactly in bad company with using a relational db.


Post a Comment for "Twitter Like Model Using SQL Server/Azure Or Graph DB"