I want to implement mysql fulltext search in a project I am working on. This is the table I have.
CREATE TABLE `dataFullText` (
`id` int(11) NOT NULL,
`title` char(255) NOT NULL,
`contents` text NOT NULL,
PRIMARY KEY (`id`),
FULLTEXT KEY `title` (`title`),
FULLTEXT KEY `contents` (`contents`),
FULLTEXT KEY `title_contents` (`title`,`contents`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
i want people to be able to search keywords in the "title" column or the "contents" colunm or both the "title" and "contents" columns (3 types of searching methods) and I want to do them all with fulltext search(MATCH... AGAINST....).
To accomplish this, I know I need 3 fulltext indexes in the table.
So here is the question: When the data in this table grows large even huge, will inserting and updating take ages? Because when you do an insert or update query, at least two fulltext indexes will get reindexed at the same time.
If there is a performance issue, there is any other better solutions to implement the search function I want?
Thx