I've a website with a voting system (like/dislike).
The application has been developed by another developer, and now the website is getting bigger and bigger and performance is serious consideration.
i've the following table :
CREATE TABLE `vote` (
`id` int(11) NOT NULL auto_increment,
`article_id` int(11) NOT NULL,
`token` varchar(64) collate utf8_unicode_ci NOT NULL,
`type` int(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `article_id` (`article_id`)
) ENGINE=InnoDB;
The token column is used to identify each user/vote/date it is an unique token which is part of a user fingerprint to allow them to vote once and change their vote type.
One of the most slow query is the following:
SELECT count(*) AS `nb` FROM `vote` WHERE (token = '00123456789012345678901234567890');
It sometimes takes almost 10seconds to return when the server doesn't shutdown.
I can't use a cache here, because I need to check in a real time to allow or not the vote and increment the count.
I cannot change much application logic because it relies on too much dependancies used everywhere in the application (it was badly designed).
So I'm looking for options to improve, even a few, performance.
Edit: I've an index on token column
there are ~2,000,000 rows and all token are almost unique
EDIT:
I ran a benchmark with all your advises :
Top average queries
1. SELECT COUNT(*) AS nb FROM `vote` WHERE (`token` = '%s') completed in 2.19790604115 sec
2. SELECT COUNT(`id`) AS nb FROM `vote` WHERE (`token` = '%s') completed in 2.28792096376 sec
3. SELECT COUNT(`id`) AS nb FROM `vote` WHERE (`token` = '%s') GROUP BY `token` completed in 2.3732401371 sec
4. SELECT COUNT(*) AS nb FROM `vote` WHERE (`token` = '%s') GROUP BY `token` completed in 2.57634830475 sec
Sometimes the third query is the quickest but sometimes it's the worst.
I ran it 10 times where each query is run 20 times
I ran this benchmark WITHOUT any INDEXES (except one on id)
That's weird, I though the COUNT(id) would have speed up a bit the query.