I have a chat program that will run very slowly if database access is from the hard drive.
I thought of creating a temporary table TYPE=HEAP which will run directly from ram. This would have been a perfect solution, except for the fact that mysql does not allow "auto-increment" column in temporary tables.
Is this just an issue with mysql, or is it the same with other databases?
I need an auto-increment column, because my script depends on last_insert_id().
Thanks.
Richie.