I am running a program which reads a massive array of numbers from a couple of files each time I run it. The loading times are unbearable and the RAM is used anyway, so I figured it’d be great to only load the array once, and then have acces to it on subsequent executions.
Is there any way I can save that array for future use, so that I don’t have to load it each time I run the program? Perhaps a prefab of some sorts?