Huge Graph Structure
- by Harph
I'm developing an application in which I need a structure for represent a huge graph (between 1000000 and 6000000 nodes and 100 or 600 edges) in memory. The edges representation will contain some attribute of the relation.
I have tried a memory map representation, arrays, dictionaries and string for represent that structure in memory, but this always crash because the memory limit.
I would to get an advice of how can I represent this, or something similar.
By the way, I'm using python.