Hi,
I've got a newbie question about the performance and memory consumption in the below scenarios:
- I've got a large JSON file and I need to load it to PB. Which PB type is the best for performance: structure, datawindow (datastore) or nonvisual object?
- The same question for memory consumption.
Maybe, there exists a documentation about the best practice of using PB object for better performance and low memory consumption ?
Regards
Paweł
If the JSON file is of a *simple* nature (ie: just straight rows / columns) then the DataWindow object is your best fried here. :-)
If the JSON is of a *complex* nature, then the only avenue would be to use the JSONParser object class. While you can load the data into it from a TXT file, It is of course slower, more memory consumptive and requires coding on your part.
Regards .. Chris