I have question about use massive data structure (list, dict, tuple, etc.)
If my computer have memory size 2GB, Can I use 3GB or more data structure in memory?
This question occured when use massive matrix data.
For solve this question, I think use pagefile or swap area during processing.
but I can not know 'how', and I want find more other methods.
I waiting for reply. Thank you for read this question article.
Python uses all the resources provided by your OS (which can be quite problematic for other services). If you want to use a swap file in order to increase the memory for your application, you have to do this on the OS layer and not in your software. There are some ways to get hold of this sort of problem:
To give a more precise answer, you have to provide more detailed information about your problem.