in reply to Re^2: How to improve MYSQL search performance of perl?
in thread How to improve MYSQL search performance of perl?
You can find out what indexes are used by MySQL in this query by running the commandselect topic FROM table1 WHERE uri LIKE '$q'
where "something" is one of your parameters. You can see what indexes are defined on your table by running the commandEXPLAIN SELECT topic FROM table1 WHERE uri LIKE 'something'
SHOW CREATE TABLE table1;
|
|---|