MySQL Forums
Forum List  »  Full-Text Search

Re: Full-text search slower than like
Posted by: sricharan vemuri
Date: March 12, 2010 03:29PM

I would suggest using explain for both the queries .. Looks for the column keys and extra when you use explain. If there are no keys used then that's an issue make sure the searches you are making on the columns are atleast indexed. Also if in the extra column if it says using temporary then you need to look on the joins it self and also the where clause.

Another suggestion would be to increase the temp table buffer size. It could also be the configuration of my.cnf file. There are many optimizers available for mysql. If you are using unix server you can use the perl sql optimizer..

Check the link below..
http://www.simplemachines.org/community/index.php?topic=354444.0

Options: ReplyQuote


Subject
Views
Written By
Posted
7120
December 11, 2009 12:42PM
2863
February 07, 2010 02:04PM
2693
February 07, 2010 06:14PM
2825
February 10, 2010 08:26PM
Re: Full-text search slower than like
2949
March 12, 2010 03:29PM


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.