I have a MEMORY table with about 650 rows, 5 MB data length, 60 kB index length (so it's pretty small). It has one SMALLINT primary (hash) key, and about 90 other columns (ints, varchars, datetimes, no blobs or texts). (EDIT: there's also a hash key on a BIGINT column.)
I'm running this query (from PHP) quite often (about 10 times per second):
select * from userek where id={CONST_ID} and kitiltva=0 and kitiltva_meddig<"{CONST_DATETIME}" and inaktiv=0
Note: id is the primary key. I need the * because the result is used in a lot of different places, and basically all columns are used here or there.
My problem is: the query gets abnormally slow on a regular basis. About 0.5s on average, 8s max. Most of the times it's very fast: 75% of runs faster than 3ms, 85% faster than the average. But 15% it's slower than average, 13% slower than 1s. So it's got a long tail.
And I have absolutely no idea what might cause it. Any thoughts anyone?
(id,kitiltva,inaktiv,kitiltva_meddig)would be the most appropriate for this query. But I haven't worked with MEMORY tables, so someone with more experince may advice if this (adding an index) would be appropriate to do in this case. – ypercube Oct 25 '11 at 10:37