What is the standard way to efficiently parse metric data encoded in JSON? Currently, I know that all JSON is parsed and then the values can be checked. But this means that memory and time keep the user waiting. If instead the data can be analyzed by value, then visualization can occur (for example, start drawing points on the graph), and some parsing can be avoided (for example, if you return data in one time interval when displaying a shorter one, allowing you to expand the range without additional request).
It is recommended to use jsonp (where each data element or block of elements is returned wrapped in a parse () method call)? Any other tech?
Please note that I do not want to work with websites or other event mechanisms. In my case, the server has all the ready data, and I just want to improve parsing and client-side display.
source
share