Huge Graph Structure

Posted by Harph on Stack Overflow See other posts from Stack Overflow or by Harph
Published on 2010-05-10T22:10:32Z Indexed on 2010/05/10 22:24 UTC
Read the original article Hit count: 240

Filed under:
|
|
|

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.

© Stack Overflow or respective owner

Related posts about graph

Related posts about python