What is the recommended way to allocate large array in ILNumerics, reading large (>1 GB or >>1 GB) CSV file?
I am aware of the ILMath.csvread static class, is there a better way to handle multiple types on a single line? For example I may want to read a very long int (for dates) and doubles comma separated. Any efficient way of achieving this?
What about memory management issues? How to allocate the right memory size on the fly? Can I store everything in ILArrays? Should I define my own type to encapsulate several arrays?
To summarize: what is the recommended way of reading into memory a large number of csv rows (100 million rows or even billions)?
Thanks in advance