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 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

share|improve this question

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.