Re: [Neo4j] Regd: Neo4j basic questions.

2011-05-03 Thread Anil Tatikonda
Thanks a lot i will try running this sample. On Mon, May 2, 2011 at 3:32 PM, Adriano Henrique de Almeida < adrianoalmei...@gmail.com> wrote: > Hi Anil, > > if you're also interested, there is the IMDB example: > https://github.com/neo4j-examples/imdb. Also I have an example project at > my > gith

Re: [Neo4j] Regd: Neo4j basic questions.

2011-05-02 Thread Adriano Henrique de Almeida
Hi Anil, if you're also interested, there is the IMDB example: https://github.com/neo4j-examples/imdb. Also I have an example project at my github: https://github.com/adrianoalmeida7/neo4j-vraptor-example where I integrate Neo4j with a webframework other than SpringMVC (in this case, VRaptor). I a

Re: [Neo4j] Regd: Neo4j basic questions.

2011-05-02 Thread Anil Tatikonda
This is really very interesting... thanks a lot i will keep trying different things out On Mon, May 2, 2011 at 1:15 PM, Michael Hunger < michael.hun...@neotechnology.com> wrote: > Please don't confuse a graph data structure with a "visual" graphical > representation, graphical can mean anything.

Re: [Neo4j] Regd: Neo4j basic questions.

2011-05-02 Thread Michael Hunger
Please don't confuse a graph data structure with a "visual" graphical representation, graphical can mean anything. Graphs are nodes and relationships to other nodes which all can have relationships. For you as a Java developer it is perhaps easiest to imagine those as object networks. Otherwi

Re: [Neo4j] Regd: Neo4j basic questions.

2011-05-02 Thread Anil Tatikonda
Thanks a lot for all the Help. Yes I'm a Java Developer i may sound so dumb to you. I was just trying to validate my understanding as this is little interesting for me and its giving me little different perspective towards the data staying in a file locally... its very different from our day to d

Re: [Neo4j] Regd: Neo4j basic questions.

2011-05-02 Thread Marko Rodriguez
Hey, Are you a Java developer? Simply start playing around as such: GraphDatabaseService graph = new EmbeddedGraphDatabase( "var/graphdb" ); Node a = graph.createNode(); a.setProperty("name", "marko"); Node b = graph.createNode() b.setProperty("name", "gold plated rocket car"); Relationship r = a

Re: [Neo4j] Regd: Neo4j basic questions.

2011-05-02 Thread Anil Tatikonda
Thanks that is a pretty quick reply i appreciate your response that helps my understanding. And so now I'm trying the example in the Design Guide section. But it asks me to create the RelationShipTypes by following the instructions in Getting started but its not that clear. And moreover where do i

Re: [Neo4j] Regd: Neo4j basic questions.

2011-05-02 Thread Marko Rodriguez
Hello, Neo4j is a database + API. Thus, Neo4j will persist your data for you (in a directory) and will expose that data logically as a graph for you (JavaDoc API). Neo4j is NOT a graph API over an existing database (e.g. MySQL). Hope that helps, Marko. http://markorodriguez.com On May 2, 2011

[Neo4j] Regd: Neo4j basic questions.

2011-05-02 Thread Anil Tatikonda
I have read through the Getting Started on Neo4j this morning. I understood that this a graphical database representation of our data. But its very hard to imagine in terms of our Application. So where does the data stay lets just say we have Customers and Orders like your example where does all t