Jump to content

More efficient way to get updates from friends


virruss

Recommended Posts

Hi guys,

 

I'm developing a website which allows people to connect and follow each other's activity (like Twitter, for example).

 

To simplify everything, let's say I only have 2 tables:

 

1. Followers

 

id | follower_id | id_to_follow

------------------------------------

 

2. Activity

 

id | member_id | message | time

-----------------------------------------

 

Let's say John is following Jane and Bob. I want to create a "news" page and display the last 20 messages from Bob and Jane, chronologically.  For small numbers, I'd do something like this:

 

Select everything from the Activity table, check for every entry if the member is a friend of John's (in the Followers table) and, if so, display the message, ORDER BY `id` DESC.

 

But, this is very inefficient, I guess, for larger numbers (I can't even think about how many queries would take to do this on a site like Twitter...).

 

Any ideas of how to do the same thing more efficiently?

 

Thank you.

Link to comment
Share on other sites

Thanks, man!

 

I think this is a great place for me to start designing the structure. I didn't know that using JOIN is more efficient. I've managed to do the job for this simple example.

 

But is it ok to search another table for a photo, separately, for each user (this means about 20 more queries per page), or can I do that in the same query too? I'm not sure how complex can a single query get.

 

Do you have an example so I can study it instead of being abstract? Thanks a lot.

Link to comment
Share on other sites

But is it ok to search another table for a photo, separately, for each user (this means about 20 more queries per page), or can I do that in the same query too?

It's *much* more efficient to get their photo in the same query. Queries can get pretty complex :)

 

Websites like twitter, facebook, amazon, etc. structure their databases in a non-relational way (NoSQL), so that they can create a single query without any joins to get all the information they need. I wouldn't worry about going to this extent. But using joins is far more efficient than using multiple queries.

 

Single Query < Single Query with Joins < Multiple Queries

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.