How to store a large graph on disk
I have a large graph of a few 100 GBs so I can't store it in RAM. The graph has multi-edges and there are labels for each edge. I would like to perform queries such as the following:
What's a good way to store a graph on disk for these sorts of queries?
This is for a single high performance PC not a distributed setting. My preferred programming language is Python.
You can try to use Neo4J graph database. It has support for Python language and rich query syntax which will give you an ability to perform all the queries you mentioned.
链接地址: http://www.djcxy.com/p/92618.html上一篇: 需要签署什么?
下一篇: 如何在磁盘上存储大图