Hi Guys,
Im retrieving real time data via xml from another server, formatting it, sorting it, then displaying it. Its taking ages to format, sort and display the data, about 1+min, cause according to the server people, the compressed xml data only took 15 secs to return.
At present, I'm looping through the compressed data, inserting them into 4 different arrays based on different criteria.
Before displaying the data, I used
sortmddata()
to sort the 4 individual data alphabetically.
I then loop through each array to display.
How can I trim down the processing time? Would inserting every xml retrieval into a db make it display faster? Data can range from 1 row, to 300 rows..