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.

I have run into a bit of an issue with a database I am developing.

Basically pretty much all the time I run "processlist", I find that I have a lot of "locked" or "opening tables" or "closing tables" in the list. These will usually last up to 8 seconds.

First of all I query a table with approx 500,000 rows, here is the table:

CREATE TABLE IF NOT EXISTS `post` (
  `id` mediumint(9) NOT NULL auto_increment,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `comment` text NOT NULL,
  `creator` varchar(100) NOT NULL,
  `creation_date` varchar(50) NOT NULL,
  `stamp` varchar(30) NOT NULL,
  `files` text NOT NULL,
  `source` varchar(250) NOT NULL,
  `date` varchar(30) NOT NULL,
  `size` varchar(15) NOT NULL,
  `urlf` varchar(250) NOT NULL,
  `cat` varchar(30) NOT NULL default 'Unsorted',
  `last` varchar(30) NOT NULL,
  `rating` float NOT NULL,
  `views` smallint(6) NOT NULL,
  `comments` tinyint(4) NOT NULL,
  `status` varchar(30) NOT NULL default 'OK',
  `dead` tinyint(4) NOT NULL,
  `updated` varchar(5) NOT NULL default 'NO',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `hash` (`hash`),
  KEY `source` (`source`),
  KEY `rating` (`rating`),
  KEY `date` (`date`),
  KEY `cat` (`cat`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=619709 ;

Then, to speed things up, I have a table with just the title and ID:

CREATE TABLE IF NOT EXISTS `post_titles` (
  `id` bigint(20) NOT NULL,
  `name` text NOT NULL,
  UNIQUE KEY `id` (`id`),
  FULLTEXT KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

and the following query is run:

$query = mysql_query("SELECT *, MATCH (`name`) AGAINST ('$q') AS score FROM post_titles WHERE MATCH (`name`) AGAINST ('$q') ORDER BY score DESC LIMIT 0,75");

using PHP/mysql I then just grab the row from the first table rather than using just one table, as it makes a good performance difference.

Anyway just wondering if anyone can see anything wrong here, I am using the standard my-huge.cnf with 4GB of ram nothing else has changed on the config file. The only other thing I can think is that the HDD is crap

share|improve this question
what is this "AUTO_INCREMENT=619709 " ? – Mitch Wheat Apr 19 '11 at 0:23
2  
Why do you have ids with different sizes in the two tables? And since you have 2 tables, why not use a JOIN to get results? You think that running two queries is good for performance? – ypercube Apr 19 '11 at 0:45
1  
Anyway, the problem with the running speed is I think the MATCH (name) AGAINST ($q). It scans and orders the whole table. – ypercube Apr 19 '11 at 0:47
Thannks for your feedback. I have to scan the whole table because it is a search function and this is the best performance I have got so far, how would you suggest I rewrite the query? – Nigel Apr 19 '11 at 10:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.