I looked for a working answer everywhere but up to now I haven't found one.
I have to save multiple variables, mostly dictionaries, on a file using Python. I tried to use Pickle but I had a "Memory Error" because of the size of my data, it's really really large, also if i explicit "protocol = 2".
How can I save such a huge data to a file? I have dictionaries with 7 entries, each one with a (1058694, 10, 9) numpy array, just to be clear.
Thanks in advance