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
JOINto get results? You think that running two queries is good for performance? – ypercube Apr 19 '11 at 0:45MATCH (name) AGAINST ($q). It scans and orders the whole table. – ypercube Apr 19 '11 at 0:47