I index all the columns that I use in my Where / Order by, is there anything else I can do to speed up the queries?
The queries are very simple, for example:
SELECT COUNT(*)
FROM TABLE
WHERE user = id
AND other_column = 'something'`
I am using PHP 5, the MySQL client version is 4.1.22, and my tables are MyISAM.
source
share