I've been using RDBMSes since college and am really struggling with the underlying concepts of NoSQL databases...but I think their concept is really cool.

I believe I understand the following (please correct me if I'm wrong, because these play into my question here!):

  • NoSQL is not some formal specification; it is a concept underlying a new "breed" of databases that are not relational and do not use SQL
  • As such, each NoSQL system is different (for instance, MongoDB is JSON-centric)

If these are true, then let us redirect our attention to Neo4j, a "graph-based" database.

After perusing the site and the PDF, it seems like Neo4j is not only a database, but it also provides a Java API that essentially replaces the need for traditional ORM tools like Hibernate.

So, my final question is actually a request for clarification/confirmation of that last assertion, specifically:

  • Is it true that if my backend is entirely Neo4j-based, that I would have no need for Hibernate (which is my usual ORM)? Are these two APIs mutually-exclusive, or is there some way to benefit between using both of them?

Thanks in advance!

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

AFAIK, Hibernate is an object/relational mapping framework that only supports SQL-like databases. So you won't need / be able to use it if you use Neo4j, you would use Neo4j's API instead.

But nothing prevents you from using both Neo4j and an SQL database therefore mixing Hibernate and the neo4j API (most likely to store/query different objects within your project).

Have you checked the basic examples given on Neo4j website, such as http://docs.neo4j.org/chunked/snapshot/tutorials-java-embedded-hello-world.html ?

EDIT:

You are right, NoSql does not define a specific standard. You might want to have a look at this (short) introduction: http://martinfowler.com/articles/nosql-intro.pdf

link|improve this answer
feedback

I've been using RDBMSes since college and am really struggling with the underlying concepts of NoSQL databases...but I think their concept is really cool.

A graph database like Neo4j expresses a domain in terms of vertices connected to other vertices with edges. An edge contains its start and end vertex. Each vertex and edge can have a map of properties, key-value pairs that can be used to store additional information about the vertices and edges. You can, of course, extend this with your own domain, but things are simple to start out.

To see these concepts in action, I recommend the Getting Started Guide for Gremlin. Gremlin is a domain-specific language for traversing graphs that works with Neo4j and several other graph databases. Gremlin is to a graph database what SQL is to a relational database.

I can't recommend Gremlin strongly enough while you're learning about graphs. In just a few minutes, you can be up and running working through the Gremlin tutorials. Gremlin will provide you with a REPL that will let you experiment with small graphs and get immediate feedback. Even if you don't use Gremlin in your production system, the knowledge gained at the REPL will help you validate your designs and can serve as a precursor to more rigorous unit testing and development.

If you prefer working directly with Neo4j's API's, their traversal framework tutorial should help.

Is it true that if my backend is entirely Neo4j-based, that I would have no need for Hibernate (which is my usual ORM)?

Since you're new to Neo4j, I would recommend that you avoid ORM's until you first understand what the ORM needs to do for you. See how much pain you're really going to experience mapping the results of your query to your domain. If the pain can be ameliorated by an ORM, the Spring-Data framework mentioned by Peter may be useful.

In all likelihood, you will probably be just fine. I have worked on several projects where the accidental complexity introduced by the ORM far outweighed the benefits. Mapping the query results to the domain was in no way the most complicated part of the system.

link|improve this answer
feedback

As @assylias said you would not be able to use Hibernate as an ORM for a Graph DB like Neo4J, but there are other solutions.

In first place you can use the Neo4J api to traverse the graph and retrieve Vertices and Edges, consider that it is not an ORM so it would not map the vertices and/or edges you retrieve to your custom entities like Hibernate does.

This can be a solution but you would end up with code that is written specifically for Neo4J which have his own api, different from others graph databases (like OrientDB for example) and going on with the development you would probably need a more flexible way of retrieving data and map the results to your objects, so i suggest to take a look at the Tinkerpop stack (http://tinkerpop.com/) that is basically a series of java apis and abstraction layers to work with graph databases.

Start looking at Blueprint (http://blueprints.tinkerpop.com) that is an abstraction layer over the main concepts of a graph DB, so you can write code that does not depends on a specific DB vendor, then take a look at Frames (http://frames.tinkerpop.com/) an ORM like framework to map objects to vertices and edges, and Gremlin (http://gremlin.tinkerpop.com/) a language to easily query the graph.

link|improve this answer
+1 for blueprints and frames. Frames is probably the closes to a hibernate like ORM you'll find. However, like all ORMs, you'll take a hit when it comes to performance with Frames. – Pridkett Feb 8 at 18:17
feedback

Instead of Hibernate, I would take a look at http://www.springsource.org/spring-data/neo4j which is annotation driven, supported by Spring and works very well. Would this be something to work with?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.