Reputation: 18155
Scenario:
Questions:
Upvotes: 1
Views: 1168
Reputation: 5826
I've prepared a simple performance test. I update a chart with 5000 random generated points by using setData
function every 3 seconds. You can find the explanation of the arguments passed to this function here: http://api.highcharts.com/highcharts/Series.setData
Performance with boost module: http://jsfiddle.net/kkulig/7u6ozqg8/
Output on my PC:
time with boost: 189.785888671875ms
time with boost: 109.576904296875ms
time with boost: 159.59326171875ms
time with boost: 75.766845703125ms
time with boost: 132.65625ms
time with boost: 174.887939453125ms
time with boost: 41.648193359375ms
time with boost: 54.340087890625ms
time with boost: 72.6669921875ms
Performance without boost module: http://jsfiddle.net/kkulig/gLehoqp5/
Output on my PC:
time without boost: 211.60595703125ms
time without boost: 146.89501953125ms
time without boost: 180.163818359375ms
time without boost: 156.8388671875ms
time without boost: 248.77197265625ms
time without boost: 149.34130859375ms
time without boost: 142.1357421875ms
time without boost: 189.8759765625ms
time without boost: 203.60009765625ms
Answers
Upvotes: 1