Re: [Neo4j] how to scale and view or generate reports for complex graphs?

2011-08-03 Thread Jim Webber
Hello, I'm not sure I understand this problem. You're saying that in a RDBMS, you can query the database to help debug it. In Neo4j you also have query capabilities to help debug a database (e.g. Cypher, Gremlin), though our toolchain isn't as integrated as some of the SQL tools (e.g.

Re: [Neo4j] how to scale and view or generate reports for complex graphs?

2011-08-02 Thread sambodhi
Hi Niels Thanks for your reply! Adding meta info should certainly help but what I exactly mean from complexity her is huge size of the graph with thousands of nodes. For example, in RDBMS if there is some problem with a some user information, I can fire a select query or I can use tools like sql

[Neo4j] how to scale and view or generate reports for complex graphs?

2011-07-27 Thread sambodhi sagi
Hi Guys! I am a bit new to Graph database. I really liked the concept, graph made managing relationship between the entities relatively easy. I therefore chose to use it in my new project. I started the development two weeks back and my graph has already grown so complex with static data. I am

Re: [Neo4j] how to scale and view or generate reports for complex graphs?

2011-07-27 Thread Niels Hoogeveen
Hi Sambodhi, One of the means to organize complexity is by adding meta information to your database. This first of all helps you organize what relationships and properties belong to what sort of node, it may also help answer questions such as: what nodes belong to what type/class. Niels