Hi, >>Also I want to show this graph visually. I used Gremlin and Jung to view the
>>graph, but it either did not work even for 1M nodes! Any Idea About this >>one? JUNG [ http://jung.sourceforge.net/ ] is not equipped to layout 1million nodes (+ ? edges). Jung is an in-memory graph visualization toolkit. Moreover, you unless you move to something like Walrus [ http://www.caida.org/tools/visualization/walrus/ ], 1M nodes is simply too large and a cluttered mass of darkness is all you will see. If you are interested in visualizing a 10 million node graph, you can use the Neo4j WebAdmin JavaScript lazy-loading engine or you can write your own lazy loading engine using, for example, Neo4j --subgraphs-->TinkerGraph--visualization-->JUNG. I did the latter for a previous project, where I used Gremlin traversals to determine what gets put into the TinkerGraph from Neo4j. However, with lazy loading techniques, you only see what you have loaded, not the whole graph as one mass entity. Good luck, Marko. http://markorodriguez.com _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

