Answering to myself because I found some new data:
On 22 Abr, 12:27, Toni <
devega...@gmail.com> wrote:
>
> On a P4-3GHz sever it takes ~1200ms to return an array of approx 100
> lines (each an array of 4 fields).
>
I found that approx 700 of those 1200 ms are due to FF painting the
table, so, after eliminating that painting, the real numbers are:
500ms when returning the array
80ms when converting the array to a single CSV style string and then
splitting back to array on browser
The string trick makes it much better, but I'd still like to know if
the array to json conversion can be improved a bit
Toni