Is there a way how to effectively store the long lists to save the run-time memory?
I have problems to fit into the memory with 2D array of N elements. If I split it into the two 1D arrays of N elements, it is a bit better, but still not enough.
I thought, that it might be more effective to store the items in the properties (like 2N scalar values), but unfortunately it isn't. Please, advise me. Thanks!