Here's the table code
CREATE TABLE `webpages` (
`pageid` INT(10) NOT NULL AUTO_INCREMENT,
`pagetitle` VARCHAR(250) NOT NULL,
`pagecontent` LONGTEXT NOT NULL,
`pagedate` INT(10) NOT NULL,
PRIMARY KEY (`pageid`),
INDEX `pagetitle` (`pagetitle`, `pagedate`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB
I've made a index into title, id and date which I want to get them faster in my search operations, Also I saw that InnoDB is also make a performance change.
Waiting your thoughts, There's no PHP code done yet.