Hello, I intend to use MySQL in a data acquisition software. The actual version stores the acquired data straight in files. The sample rate can get up to 50 kHz. I would like to know if there is some way to improve MySQL insert rate. The following C++ code with mysql++ takes 5 seconds to execute in my Athlon 1.33 machine:
sql_create_2 (teste1, 1, 2, double, datahora, double, valor1) int main() { try { // its in one big try block Connection con(use_exceptions); con.connect("cesar"); Query query = con.query(); teste1 row; // create an empty stock object for (int i=1;i<50000;i++) { row.datahora = (double) i; row.valor1 = i / 1000; query.insert(row); query.execute(); } As you can see there are only two fields: a double timestamp and a double value. In the real application there are some more double values. I need to decrease this time to less than 1 second. Is there any kind of buffered inserts or maybe a way that I could pass a matrix? I'm shocked with the performance of MySQL, a similar query to compute 1 million records takes 1.17 seconds in MySQL and around 6 seconds in the current system. So if I can decrease the insert time I'll definetly use MySQL! Thank you for the attention. Best regards, Cesar --------------------------------------------------------------------- Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php