I need to perform 3 million inserts to the database (mysql). PHP seems to be slow when it comes to insertion. I just need to verify if C performs faster in executing codes.
feedback
|
|
The bottleneck is probably the database regardless of programming language. You should look into batch inserts and disabling of indexes during insert to speed up the process. | |||||||
feedback
|
|
C is indeed faster, but I also think that database is the big bottleneck | |||
|
feedback
|