I am developing an application in which I need a structure to represent a huge graph (between 1,000,000 and 6,000,000 nodes and 100 or 600 edges per node) in memory. The edges view will contain some relationship attributes.
I tried representing memory cards, arrays, dictionaries, and strings to represent this structure in memory, but they always crash due to memory limitations.
I would like some advice on how I can present this, or something like that.
By the way, I am using python.
python memory data-structures graph
Harph
source share