Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It's been a while since I've come across a query that can't be fixed up with a few indexes, but this one has me stumped. The basic premise here is having members, blog posts written by the members, and subscriptions. Members can subscribe to other members, and browse all blog posts written by the members they're subscribed to.

Here are the basic tables without indexes:

create table `members` (
    `id` int(10) unsigned not null auto_increment,
    `username` varchar(30) not null,
    PRIMARY KEY(`id`)
) ENGINE=InnoDB;

create table `posts` (
    `id` int(10) unsigned not null auto_increment,
    `written_by_member_id` int(10) unsigned not null,
    `title` varchar(100) not null,
    `content` text not null,
    `date_created` datetime not null,
    `share` enum('public', 'private', 'subscribers_only'),
    PRIMARY KEY(`id`)
) ENGINE=InnoDB;

create table `subscriptions` (
    `member_id` int(10) unsigned not null,
    `subscribed_to_member_id` int(10) unsigned not null
) ENGINE=InnoDB;

And here's a query that does what I need, but it's incredibly inefficient:

SELECT *
FROM `posts` 
WHERE written_by_member_id IN (SELECT subscribed_to_member_id FROM subscriptions WHERE member_id = 55) 
AND (share = 'public' OR share = 'subscribers_only')
ORDER BY date_created DESC;

This will give me every post written by all members that member 55 is subscribed to, ordered by the most recent post, to the oldest.

There are so many things wrong here, that I don't even know where to begin. The sub-select is inefficient, the OR clause on posts.share is killing the query, and lets not get started with sorting by date_created DESC.

I've been able to make the query a bit more efficient by using a constant list of IDs instead of a sub-query, but that constant list may be thousands of IDs long. Also my posts table has about 12 million rows.

I'm having trouble thinking outside the box on this one, so any help would be appreciated.

share|improve this question

closed as not a real question by casperOne Oct 23 '12 at 12:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

Did you try using a join query as?

    SELECT p.*
    FROM posts p JOIN subscriptions s
           ON (p.written_by_member_id = s.subscribed_to_member_id 
               AND s.member_id = 55 )
    WHERE (p.share = 'public' OR p.share = 'subscribers_only')
    ORDER BY p.date_created DESC;
share|improve this answer
That returns the right results, but it's just as inefficient as my query. And by inefficient, I mean very inefficient. – mellowsoon Oct 22 '12 at 4:03
please WHERE p.share in ('public', 'subscribers_only') – Imre L Oct 22 '12 at 14:30
@ImreL: Do you want me to update the answer with in clause? – Yogendra Singh Oct 22 '12 at 14:35

Hard to give you a custom solution without knowing the details and going to some trial and errors testing. For "inside of the box" solution, a few things to improve your query:

  1. Perform a JOIN like Yogendra suggested, PLUS add the necessary indexes of course. Otherwise your mysql will just fetch the whole table every time. If you need help with determining the indexes required let us know.

  2. You can remove the OR in the WHERE clause by changing the clause to WHERE share != 'private'.

  3. Change your ORDER BY statement to order by id DESC. You'll get the same result but better performance because id is your primary key and in INNODB the content of your table will already be sorted by it.

share|improve this answer
Regarding ordering by id, I was under the impression that mysql didn't support real reverse indexes. Meaning, yes, the table is already sorted by id, but not in descending order, so ordering with desc doesn't help much. – mellowsoon Oct 22 '12 at 16:21
Yes, sorry you are right, the index clustering wouldn't help your query in this case. But ordering by the id (int) will still be faster then ordering by datetime because in the sorting you'll be comparing 4-byte values instead of 8-byte ones. – sn00k4h Oct 22 '12 at 23:43

I would use a join query of the type @Yogendra posted, and I would also examine creating indexes on on posts.written_by_member_id, posts.share, posts.date_created, subscriptions.subscribed_to_member_id, and subscriptions.member_id. Most likely you will want an index on (posts.written_by_member_id) and one on (subscriptions.subscribed_to_member_id,subscriptions.member_id). The indexes on posts.share and posts.date_created are much less likely to help. Try running the query with EXPLAIN or EXPLAIN EXTENDED.

Finally, if you want really outside-the-box-thinking, you can go back to the style of databases before views existed. Create another table that has the fields in this query in it, then create triggers on the source tables that automatically update the table on insert/update/delete. You may want to schedule a task that executes a procedure that automatically rebuilds the table periodically, too. It's a huge pain in the ass and it means you're duplicating data, but it's something you may wish to do for performance reasons.

Edit: Thought of another thing to try. You can try specifying a LIMIT clause in your select statement, and displaying a limited number of items on a page in your application. That may drastically increase performance if performance loss is proportional to the number of posts.

share|improve this answer

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