I have a table where I'm esentially only writing.
Think of it as a "transactions" list, where I keep all the details, and I also have a "total" stored in another table. That total is redundant, for performance, but it can be re-calculated if needed from this transactions table.
What is better from a performance point of view, keeping in mind that several people will be simultaneoulsy INSERTing (never UPDATEing) to this table, which is never ever read?
Should I use InnoDB, or MyISAM?
(I'm already having performance problems here, i'm not prematurely optimizing)