MySQL Forums
Forum List  »  Newbie

Re: mysql search performance
Posted by: Rick James
Date: October 31, 2009 10:55PM

While you have only 3000 rows, rearrange your table by moving the bulky (I assume) text fields to a parallel table. This will help in searching.

It would be nice to see the SELECT and the other table definitions.

To assist in analyzing slow SELECTs, please provide
* SHOW CREATE TABLE tbl\G -- engine, indexes
* SHOW TABLE STATUS LIKE 'tbl'\G -- sizes
* EXPLAIN SELECT ...\G -- clues of inefficiencies
* SHOW VARIABLES LIKE '%buffer%'; -- cache size
and surround them with [ code ] and [ / code ]

Options: ReplyQuote


Subject
Written By
Posted
October 29, 2009 08:09PM
October 30, 2009 03:00AM
November 01, 2009 12:57AM
November 01, 2009 11:18AM
October 30, 2009 08:10PM
October 31, 2009 09:22PM
Re: mysql search performance
October 31, 2009 10:55PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.