in reply to Improving SQL speed
One alternative is to process all the mp3 files, and then write all the data simultaneously in one call to execute_array, instead of one call to execute for each mp3 file. It's more work to set up (must accumulate all data in separate arrays and use bind_param_array) but for a large number of entries it will probably be faster.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Improving SQL speed
by doom (Deacon) on Nov 01, 2009 at 17:59 UTC | |
by Mad_Mac (Beadle) on Nov 02, 2009 at 19:05 UTC |