Fastest MySQL storage engine for storing data without concurrency
I'm using a mysql base to store results from various test over a large amount of data (hundred of millions recordings). I'm the only user of the base so there won't be any problem of concurrency. I also want to use simple mathematical functions such as 'avg', 'std' etc What is the best engine in your opinion for such a task? I'm using InnoDB right now and it seems to me a bit heavy. Regards Guillaume Using an InnoDB table comes with an overhead of transactional support, rollbacks etc. If you don't need this support for transactions then you should really go with an MyISam table as it doesn't