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 an article table with 2 columns

Id INT(4) PK autoincrement
Description VARCHAR(250)
(and more columns)

This table contains 500.000 records and is a INNODB table. Now I want to search an article like this:

SELECT COUNT(*) FROM article (description like '%cannon%');

It takes almost a second to execute ..

What can I to to make this faster?

I have alread an index on the Description column

share|improve this question
There is a few things that you could do, one would be to add a primary key to the table to ensure that it can be indexed correctly, and then add indexes on the table to speed up the query. Also, SELECT COUNT(*) FROM article WHERE description LIKE '%cannon%'; – DarkMantis Jan 21 at 12:12
2  
index on description does not help – ajreal Jan 21 at 12:13
3  
like '%cannon%' kills the index. – JW 웃 Jan 21 at 12:13
Possible duplicate: stackoverflow.com/questions/2081998/… – Andreas Jan 21 at 12:15
The best optimization possible is if you use COUNT(1) instead of COUNT(*). The %canon% negates any other kind of optimization. – hjpotter92 Jan 21 at 12:15
show 2 more comments

2 Answers

up vote 1 down vote accepted

Queries with like '%cannon%' are very hard to optimize. No, indexes can't help you. Maybe full-text search can help you.

share|improve this answer
I was affraid of this, thx – Ruutert Jan 21 at 12:15

You should consider adding fulltext index on description:

http://dev.mysql.com/doc/refman/5.6/en/fulltext-search.html

And then use:

SELECT 
    COUNT(*) 
FROM article 
WHERE MATCH (description) AGAINST ('cannon' WITH QUERY EXPANSION);
share|improve this answer
the storage engine is innodb – ajreal Jan 21 at 12:17
my dear, the support of full-text search is 5.6 onwards, yet, you paste a documentation of 5.0 – ajreal Jan 21 at 19:51
my bad :) I updated the answerr – povilasp Jan 22 at 6:36

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.