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.